I have created a Custom View in Excel for a tab. This Custom View has certain columns hidden so that I can easily print a report. I decided to create a Custom View so that I could avoid writing all of the code to the print the report (and manually set the print settings) when all of the columns are not hidden in VBA.
Is there a way that I can write a macro that will print the content of a Custom View in Excel that has all of the correct print settings defined already?
Here is what I have so far:
' This Macro will print the Custom View on Direct Materials.
Sub Print_Direct_Materials_Custom_View() ' Print_Direct_Materials_Custom_View Macro
ActiveWorkbook.CustomViews("Print View Direct Materials").Show
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
End Sub

