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.
AdamTanner
8 years agoQrew Trainee
I do not want to test if the field is blank. I want to label a record as either, Oracle, Payment, or Rapid hold in a summary report if a certain field has text in it. Does that make sense?