I have an Excel file with 100 sheets, all with the same layout.
I need to loop through all sheets to apply formatting.
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
Range("A1").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "Balance Sheet"
Range("Q1").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "Cash Flow"
Next ws
End Sub