Hi everyone,
I have a simple question:
I have a macro for printing a sheet whose name is in a cell
Sub printchartnew1()
' printchartnew1 Macro
Sheets("TF90").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
End Sub
Now in a separate sheet of the same workspace I have a list of the sheet names:
A
1 TF90
2 TF88
3 TF87
4 TF65
5 TF78
6 TF43
I want to create a macro which prints the sheet whose name is in the list. For example A2 for printing the Sheet labelled TF88.
Finally I would like a macro which prints ALL the sheets whose name are on that list.
I think I have to change something in here:
Sheets("TF90").Select
Actually in the macro I am selecting the sheet and then printing but I guess that the selection step can be skipped somehow....
Any help would be extremely appreciated.
Bookmarks