ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   prohibit printing based on input (https://www.excelbanter.com/excel-programming/272710-re-prohibit-printing-based-input.html)

Paul B[_7_]

prohibit printing based on input
 
Barb, see if this will work for you, put in the this workbook code

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim Cel As Range
'change your range here
For Each Cel In [b1:b6]
If IsEmpty(Cel) Then
Cel.Select
Cancel = True
MsgBox "Missing data", vbExclamation, "Can't Print Without All Data"
Exit Sub
End If
Next Cel

End Sub

--
Paul B
Always backup your data before trying something new
Using Excel 97 & 2000
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **



"Barb" wrote in message
...
Is it possible to prohibit the printing of a form until
all required fields contain values?





All times are GMT +1. The time now is 06:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com