S
Stuart
How best to write this statement, please?:
If (Wkbk_PrintZeroPages = False Or _
Wkbk_PrintBlankPages = False) Then
'do not print empty/blank or zero pages,
'so test the 'total' cell for this page:
If (Pagevarr(i+1).Offset(-1, £Col).Value = 'blank/empty
' Or
"0"
' Or
"0.00"
' etc
Then Exit For
Else
Printvarr(i).PrintOut
End If
End If
Would I cover all bets with this statement?:
If the value in the total cell is Numeric and > zero Then?
seeing as there should only be numeric entries in the total cell,
if anything at all.
What's my best solution, please?
Regards.
If (Wkbk_PrintZeroPages = False Or _
Wkbk_PrintBlankPages = False) Then
'do not print empty/blank or zero pages,
'so test the 'total' cell for this page:
If (Pagevarr(i+1).Offset(-1, £Col).Value = 'blank/empty
' Or
"0"
' Or
"0.00"
' etc
Then Exit For
Else
Printvarr(i).PrintOut
End If
End If
Would I cover all bets with this statement?:
If the value in the total cell is Numeric and > zero Then?
seeing as there should only be numeric entries in the total cell,
if anything at all.
What's my best solution, please?
Regards.