RubyKapil2
5 years agoQrew Captain
Contains and IsNull formulas - is "=true" necessary
Are both of these correct and will result in the same outcome? For me they do.
Somewhere I saw the B version with the =true.
I suddenly started wondering about it for some reason - tests fine but wanted to know if there was any best practice regarding Contains.
Same thing for IsNull - does that need =true from a best practice standpoint?
A. If(Contains([TESTFIELD], "Yes"), true, false)
B. If(Contains([TESTFIELD], "Yes")=true, true, false)
------------------------------
Ruby Kapil
rubykapil@wi-finity.com
Wi-Finity, Inc
------------------------------
Somewhere I saw the B version with the =true.
I suddenly started wondering about it for some reason - tests fine but wanted to know if there was any best practice regarding Contains.
Same thing for IsNull - does that need =true from a best practice standpoint?
A. If(Contains([TESTFIELD], "Yes"), true, false)
B. If(Contains([TESTFIELD], "Yes")=true, true, false)
------------------------------
Ruby Kapil
rubykapil@wi-finity.com
Wi-Finity, Inc
------------------------------