I'm trying to figure out how to have a For Next loop run through all worksheets in a workbook besides the first one. Any ideas?
I'd just run the macro starting from the first sheet and have it manipulate all the others after it.
Here's my code for this loop part.
I'd just run the macro starting from the first sheet and have it manipulate all the others after it.
Here's my code for this loop part.
Code:
For Each ws In Worksheets
ws.Select
'Some format manipulation code here
Next ws