Trying to write code to perform a copy/paste values action on all sheets except one. I started with this but not sure if it is even close.
If the "Index" page is first in the series does it stop there?
For i =1 Worksheets.Count
if sheets(i).Name <> "Index"
Sheets(i).Activate
RNG= Sheets(Worksheets(i).Range("A1:AZ5004")).cells.select 'trying to just select the whole sheet.
RNG.Copy
Worksheets(i).Range("A1:AZ5004").PasteSpecial xlPasteValues
End if
Next i
If the "Index" page is first in the series does it stop there?
For i =1 Worksheets.Count
if sheets(i).Name <> "Index"
Sheets(i).Activate
RNG= Sheets(Worksheets(i).Range("A1:AZ5004")).cells.select 'trying to just select the whole sheet.
RNG.Copy
Worksheets(i).Range("A1:AZ5004").PasteSpecial xlPasteValues
End if
Next i