michaelsmith559
Well-known Member
- Joined
- Oct 6, 2013
- Messages
- 876
- Office Version
- 2013
- 2007
I have a line of code like this:
When Step_One is called, this line:
is highlighted and the pos1num shows as empty.
How can I have the macro Step_One reference pos1num from the other macro? Thanks for any help.
Mike
Code:
For pos1num = 6 To x
Call Step_One
Next pos1num
When Step_One is called, this line:
Code:
Range("M2").Value = Range("M" & pos1num).Value
How can I have the macro Step_One reference pos1num from the other macro? Thanks for any help.
Mike