ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to stop printing untill certain cells are filled in? (https://www.excelbanter.com/excel-discussion-misc-queries/232644-how-stop-printing-untill-certain-cells-filled.html)

Matt

How to stop printing untill certain cells are filled in?
 
Is there any way to stop the people from printint untill they fill out cell
B14 with the time that the truck is leaving?

FSt1

How to stop printing untill certain cells are filled in?
 
hi
something like this might work....
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If Range("B14").Value = "" Then
Cancel = True
MsgBox "you must fill in B14 before printing"
End If
End Sub

this is ThisWorkbook code. to use...
press Alt+F11. in the project window(far left), expand your project(file).
then expand excel objects(if needed)
scroll down and double click ThisWorkbook.
in the code window(far right), select workbook from the upper right combo box.
paste the above code in.

Regards
FSt1


"Matt" wrote:

Is there any way to stop the people from printint untill they fill out cell
B14 with the time that the truck is leaving?



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

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