Hi Michelle. Just for gee-wiz. In another program, the internal form of
a<b<c<d is the following...
Less[a,b,c,d]
Don't know if this would help, but here is a Poor-man's version of that
functionality...
Function Less(ParamArray v()) As Boolean
Dim p As Long
If UBound(v) = 0 Then Exit Function
Less = v(0) < v(1)
For p = 2 To UBound(v)
Less = Less And (v(p - 1) < v(p))
If Not Less Then Exit Function
Next p
End Function
On a worksheet, the following should work:
=Less(0,F6,12)
This returns True
=Less(2,4,6,8,10)
This returns False
=Less(2,4,6,8,7)
HTH :>)