Am trying to assign a value in a range from (A1:A100) to a variable I want to use in the same macro a 100 times.
I want a Loop to take the activecell assign it to a variable use that in a macro then move to the next row and take the next cell value.
Can someone help me pass this variable to another macro?
I want a Loop to take the activecell assign it to a variable use that in a macro then move to the next row and take the next cell value.
Can someone help me pass this variable to another macro?
Code:
For Count = 0 To 100
Var = ActiveCell.Offset(Count, 0)
Call Macro 'to use the Variable Var
Next Count
End Sub