I
iansmigger
I am currently using the following code in This Workbook to prevent printing
a worksheet until all cells vave been completed:-
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If Range("E3").Text = "COMPLETE" Then
And then it reformats the sheet before printing.
The problem I have is that it also prevents printing any other sheets within
the workbook if this sheet is not in a complete status in cell E3.
I would like to do something along the lines of the following but do not
know the code to make it work:-
If Activesheet="Supplier Request Form" AND Range("E3").Text =
"COMPLETE" Then
Cheers
iansmigger
a worksheet until all cells vave been completed:-
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If Range("E3").Text = "COMPLETE" Then
And then it reformats the sheet before printing.
The problem I have is that it also prevents printing any other sheets within
the workbook if this sheet is not in a complete status in cell E3.
I would like to do something along the lines of the following but do not
know the code to make it work:-
If Activesheet="Supplier Request Form" AND Range("E3").Text =
"COMPLETE" Then
Cheers
iansmigger