Thread
:
Hide Columns When Printing
View Single Post
#
2
Posted to microsoft.public.excel.programming
[email protected]
external usenet poster
Posts: 20
Hide Columns When Printing
Try one of
Range(myRange).EntireColumn.Hidden = True
Range("B1").EntireColumn.Hidden = True
Columns("A:E").Hidden = True
Then one of
ActiveSheet.PrintOut
ActiveSheet.Print
Then the same line as above but with "=False"
Reply With Quote
[email protected]
View Public Profile
Find all posts by
[email protected]