I want to reference Sheets within a Workbook via an index. - essentially as I want to run through a loop and clear certain cells on several worksheets.
At present I've written some vba which includes code like:
Sheet36.Activate Range("B3:T201").ClearContents
repeated each time for each sheet, for instance: Sheet37.Activate Range("B3:T201").ClearContents
All answers appreciated.