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
In other words uf the field is not blank, then you want to do something. So you do, in fact, need a way to test if a field is blank.