Hello - I would like to create an 'if' formula with a blank field. Meaning, if({employee})= "blank" then = "No" else...
How do I properly convey this idea.
as jmd said, null is a special term that doesnt mean blank, it means lacking data.
the below formula will check if the field is null or if the field is populated by just spaces, and treat them both the same.
//{@nullcheck}
IF (isnull({yourtable.yourfield}) or trim({yourtable.yourfield})="" then 0
else 1
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.