I was hoping for some assistance:
I have the following function in field I7: =IF(NF($F7,"Website")="FALSE","","√")
but instead of returning blank, it's returning √ (check mark)
What am I missing?
I was hoping for some assistance:
I have the following function in field I7: =IF(NF($F7,"Website")="FALSE","","√")
but instead of returning blank, it's returning √ (check mark)
What am I missing?
Probably it's the quotes around "FALSE", if you are testing against a field that returns a TRUE or FALSE result, the field is not likely to be formatted as a text field. In that case, the TRUE / FALSE responses are like switches - is it on or off?
Your formula is actually saying does the word FALSE appear in the field, and what actually is appearing is a response that equates to "the switch is off".
Try removing those quotes - the formula will probably work as expected:
=IF(NF($F7,"Website")=FALSE,"","√")
Hello Dorka.
I assume you are using Dynamics NAV. Is the Website field defined as a text field or as a Boolean field?
If it is Boolean, try this:
=IF(NF($F7,"Website"),"","√")
Heather, your suggestion worked. Thank you so much for your assistance!