I have a spreadsheet I populate monthly with latest sales figures, and I then provide this both electronically and printed to the managers.
I have three worksheets each containing 10 or more charts, and two worksheets that I print which just contain data.
Is there an easy way to try and print these in one go? Even just to print all of the charts of one worksheet at a time would speed this up. I tried recording a macro, but when I ran it to test it fell over in a heap.... :-(
Macro looked like this:
Cheers chaps,
Fee
"The cure for anything is salt water – sweat, tears, or the sea." Isak Dinesen
I have three worksheets each containing 10 or more charts, and two worksheets that I print which just contain data.
Is there an easy way to try and print these in one go? Even just to print all of the charts of one worksheet at a time would speed this up. I tried recording a macro, but when I ran it to test it fell over in a heap.... :-(
Macro looked like this:
Code:
Sub TestPrint()
'
' TestPrint Macro
' Macro recorded 07/09/2010 by Welshbird
'
'
ActiveWindow.SelectedSheets.PrintOut Copies:=1
ActiveWindow.Visible = False
Windows("MMP_201008.xls").Activate
ActiveSheet.ChartObjects("IRE 2010").Activate
ActiveChart.ChartArea.Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
ActiveWindow.Visible = False
Windows("MMP_201008.xls").Activate
ActiveSheet.ChartObjects("UK & IRE 2010").Activate
ActiveChart.ChartArea.Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1
End Sub
Cheers chaps,
Fee
"The cure for anything is salt water – sweat, tears, or the sea." Isak Dinesen