Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
The IsNull function is documented not to work with Text Realty. To test of a text field is blank then use the syntax here
If(Trim([my text field])="", This field is blank")
Ie you have to test against = empty quotes.
If(Trim([my text field])="", This field is blank")
Ie you have to test against = empty quotes.
QuickBaseCoachD
8 years agoQrew Captain
Try this
If(
[AP Supplier Type])<>"", "Oracle Hold",
[CURRENTWORKNODE]<>"", "Rapid Hold",
[Amt])<>"", "Payment Hold")
Note that unlike Excel, you do not need to nest your IF statements.
If(
[AP Supplier Type])<>"", "Oracle Hold",
[CURRENTWORKNODE]<>"", "Rapid Hold",
[Amt])<>"", "Payment Hold")
Note that unlike Excel, you do not need to nest your IF statements.