U
universal
Ive currently got a macro that runs:
Sub printtables()
Range("r1").Select
ActiveCell.FormulaR1C1 = "User1"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Range("r1").Select
ActiveCell.FormulaR1C1 = "User2"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Range("r1").Select
ActiveCell.FormulaR1C1 = "User3"
ActiveWindow.SelectedSheets.PrintOut Copies:=1 etc
which prints off tables as R1C1 refreshes each time its changed. Thi
works fine for me.
Now, though it looks like I'm going to have to perform the same repor
print for up to 100 users. I'm trying to make a do..loop..until loo
to loop through contents of a column (colQ), refresh the table, print
copy and move to the next cell until it gets to the end, which I'v
designated as end (Q92="end").
Just cannot get it to work, any ideas?
Many thanks
E
Sub printtables()
Range("r1").Select
ActiveCell.FormulaR1C1 = "User1"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Range("r1").Select
ActiveCell.FormulaR1C1 = "User2"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Range("r1").Select
ActiveCell.FormulaR1C1 = "User3"
ActiveWindow.SelectedSheets.PrintOut Copies:=1 etc
which prints off tables as R1C1 refreshes each time its changed. Thi
works fine for me.
Now, though it looks like I'm going to have to perform the same repor
print for up to 100 users. I'm trying to make a do..loop..until loo
to loop through contents of a column (colQ), refresh the table, print
copy and move to the next cell until it gets to the end, which I'v
designated as end (Q92="end").
Just cannot get it to work, any ideas?
Many thanks
E