Hello,
I'm trying to create a form that cannot be printed unless certain fields are filled in (A1, B19 & B45).
Been using VBA and found this online:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If Sheets("Cover Sheet").Range("A1,B19,B45").Value = "" Then
Cancel = True...