I need help executing the first code for every ID in column H. I've tried establishing a "loop" and a "for next" to no avail.
I'd like to establish a type of "i = row number" and have a "i + 1" command that will perform the same task for every cell in the column
Any help is sincerely appreciated!
Sub GenerateAll_1()
'Copy the first ID in the list (cell H2) and paste it
Sheets("Specialist Roster").Select
Range("H2").Select
Selection.Copy
Sheets("Weekly Productivity").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
'My code that saves as pdf based on other criteria goes here
'REPEAT task for the cells H3, H4... H260
for each cell in rangeRange("H:H").Copy)?