M Matt May 28, 2009 #1 is there a way to prevenbt printing of a sheet if certain cells are not filled in when they hit the button to print?
is there a way to prevenbt printing of a sheet if certain cells are not filled in when they hit the button to print?
B BobT May 28, 2009 #2 You simply need to write a macro for the BeforePrint action: Private Sub Workbook_BeforePrint(Cancel As Boolean) <do your test, etc. here> End Sub
You simply need to write a macro for the BeforePrint action: Private Sub Workbook_BeforePrint(Cancel As Boolean) <do your test, etc. here> End Sub
B BobT May 28, 2009 #3 You simply need to write a macro for the BeforePrint action: Private Sub Workbook_BeforePrint(Cancel As Boolean) <do your test, etc. here> End Sub
You simply need to write a macro for the BeforePrint action: Private Sub Workbook_BeforePrint(Cancel As Boolean) <do your test, etc. here> End Sub
H Harald Staff May 28, 2009 #4 Yes. You can trap this in the Workbook_BeforePrint event. HTH. Best wishes Harald
H Harald Staff May 28, 2009 #5 Yes. You can trap this in the Workbook_BeforePrint event. HTH. Best wishes Harald