I am using this piece of code
is it possible to use a variable on the line:
for example.
incomecount = 7
I would like to change "CHANGE" in the above to "CHANGE + INCOMECOUNT"
giving me a list as follows
CHANGE1
CHANGE2
CHANGE3
CHANGE4
CHANGE5
CHANGE6
CHANGE7
Rather than
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
which it currently does
any help would be appreciated
Code:
For COUNTER = 0 To INCOMECOUNT - 1
Selection.Copy
ActiveSheet.Pictures.Paste.Select
ActiveCell.Value = "OPEN"
Selection.OnAction = "CHANGE"
ActiveCell.Offset(1, 0).Select
Next COUNTER
is it possible to use a variable on the line:
Code:
Selection.OnAction = "CHANGE"
for example.
incomecount = 7
I would like to change "CHANGE" in the above to "CHANGE + INCOMECOUNT"
giving me a list as follows
CHANGE1
CHANGE2
CHANGE3
CHANGE4
CHANGE5
CHANGE6
CHANGE7
Rather than
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
CHANGE
which it currently does
any help would be appreciated