If Statement in report

D

Dave Elliott

I just need if ([Additional Sample]) value is less than 1 (zero) then
next code following to run
right now the Additional Sample control shows by default 0 and default value
is set to true

If IsNull([Additional Sample]) Then ' less than 1 or equals zero
[Sample #1 Date].Visible = False
[Label100].Visible = False
End If
 
Top