I have a few sheets in a workbook. They are each called Sheet (1), Sheet (2) etc.
I want to run a loop to go through each sheet and highlight a particular cell.
I have tried setting this up in vba, but can't seem to work out how to loop through the sheets.
Dim i As Integer
For i = 1 To 13
Sheets("Sheet (" & i & ")").Columns("L").Delete Shift:=xlShiftToLeft
Next i
However, this doesn't seem to loop through each of the sheets.