Thread
:
prevent page printout
View Single Post
#
2
Posted to microsoft.public.excel.programming
Papou
external usenet poster
Posts: 67
prevent page printout
Hello
You can try this workbook event:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If ActiveSheet.Name = "Sheet1" Then Cancel = True
End Sub
HTH
Cordially
Pascal
Reply With Quote
Papou
View Public Profile
Find all posts by Papou