Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Yep, the IsNull is documented not to work on text fields,. Not intuitive, I know and many before you have fallen in that same pothole. So you need to compare it to empty quotes. I like to Trim it just in case it has some invisible spaces in the data
If (Trim([Target Region])="","Non-Target","Target")
If (Trim([Target Region])="","Non-Target","Target")
CarolMcconnell
8 years agoQrew Captain
Thank you so much, that worked perfectly. I'll try and remember this in the future.