VW
2 years agoQrew Trainee
Is Not Null
Hello, I'm looking for some help using if( not is null)... I have a field called "Seat #" and another called "Verification Cleared?." "Verification Cleared?" is multiple-choice that can have t...
What field type is seat number - numeric or text?
But assuming that it is a text field like an airline seat, then try this
IF(
[Seat #]<>"" and [Verification Cleared?] = "Pending", "Incomplete",
[Seat #]<>"", "Complete")
btw, its a bit of a "gotcha", but you may not use IsNull on a text field. You need to compare to empty quotes.
https://login.quickbase.com/db/6ewwzuuj?a=dr&rid=12&rl=ep9
That's what I was suspecting. Thanks, Mark!