Auto-Format Financial Reports
When to use: After pasting raw data from your accounting system — instantly make it presentation-ready.
Sub FormatReport()
With ActiveSheet.UsedRange
.Font.Name = "Calibri": .Font.Size = 10
.Columns.AutoFit
.Rows(1).Font.Bold = True
.Borders.LineStyle = xlContinuous
End With
End Sub