S
Stuart
Here's the code:
If (Global_PrintZeroPages = False Or _
Global_PrintBlankPages = False) Then
If Not Pagevarr(i + 1).Offset(-1, £Col).Value _
End If
End If
The code should test the 2 'Global' variables (dimmed as
Boolean). If either are set to False, then it should look at
the value in the range Pagevarr(i + 1).Offset(-1, £Col).
If "Global_PrintZeroPages = False" is True then it should
test for the value "0.00". If "Global_PrintBlankPages = False"
is True, then it should check for an empty cell (ie no textual
nor numeric entry).
If either value meets the criteria, then GoTo Line200, else
continue the routine.
How do I achieve this please?
Regards.
If (Global_PrintZeroPages = False Or _
Global_PrintBlankPages = False) Then
If Not Pagevarr(i + 1).Offset(-1, £Col).Value _
GoTo Line200"0.00" Then
End If
End If
The code should test the 2 'Global' variables (dimmed as
Boolean). If either are set to False, then it should look at
the value in the range Pagevarr(i + 1).Offset(-1, £Col).
If "Global_PrintZeroPages = False" is True then it should
test for the value "0.00". If "Global_PrintBlankPages = False"
is True, then it should check for an empty cell (ie no textual
nor numeric entry).
If either value meets the criteria, then GoTo Line200, else
continue the routine.
How do I achieve this please?
Regards.