J
jcoon
I'm trying a test for below -10 and another test for 0 to -9.9 and a third
for above.
First and third test work corectly but I don't know how to test for the
second, range values between 0 and -9.99.
If SURFDIFF < -10 Then
StaElev(10) = "BELOW" 'LABEL BELOW ' works
End If
'how to you test a range between 0 and -9.99
If SURFDIFF < 0 and < -9.99 Then
StaElev(10) = "BELOW WITHIN 10 FT"
End If
If SURFDIFF > 0 Then
StaElev(10) = "ABOVE" 'GET LABEL ABOVE BELOW ' works
End If
Thank you
John
for above.
First and third test work corectly but I don't know how to test for the
second, range values between 0 and -9.99.
If SURFDIFF < -10 Then
StaElev(10) = "BELOW" 'LABEL BELOW ' works
End If
'how to you test a range between 0 and -9.99
If SURFDIFF < 0 and < -9.99 Then
StaElev(10) = "BELOW WITHIN 10 FT"
End If
If SURFDIFF > 0 Then
StaElev(10) = "ABOVE" 'GET LABEL ABOVE BELOW ' works
End If
Thank you
John