Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
How about this solution? Sub Print_Direct_Materials_Custom_View() ' Print_Direct_Materials_Custom_View Macro ' This Macro will print the Custom View on Direct Materials. ActiveWorkbook.CustomViews("Print View Direct Materials").Show ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _ IgnorePrintAreas:=False End Sub – Avatar Coder Feb 7 at 18:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.