Iโm trying to run the following Valid IF but Iโm getting the error below:
If the type field is ROUTE COMPLETE, then the Fuel Cost field is valid if its >0 but less than 1000. The field could otherwise be 0 or >0 but less than 1000.
You may wish to try below
OR(
AND([Type]=ROUTE_COMPLETE, [_THIS]>0, [_THIS]<1000),
AND([_THIS]>=0, [_THIS]<1000)
)
Thank you Suvrutt, this worked perfectly!
There is no =>
operator, which renders this expression invalid.
Good catch @Steve.
Got it. Very helpful. Thanks Steve
Just checking, => is invalid but >= works, correct?
I use >= all over the place in my app.
Yes youโre right. Greater/Less than symbol before equal symbol is the correct format;)
Yes.
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |