Nov 06, 2018 11:03 AM
Nov 14, 2018 05:55 PM
It looks like there is a deeper problem with BLANK() not working with the != operator. I made a blank column that only had one row with a value called Column1 and then another column using the function Column1 != BLANK()
. It returns 1 for all rows, even though there is nothing in all rows except 1.
Doing Column1 = BLANK()
returns the correct result (all rows 1 except for the single row with a value in it).
The best solution I found is to use the NOT operator. Doing NOT(Column1 = BLANK())
returns the expected result – all 0s except for the row that has an entry.
Nov 15, 2018 12:34 AM
You are correct, I thought I had posted that somewhere else, but I can’t find it… I’ve been using [NOT] too.
The thing is, every couple of months I forget about this bug. :roll_eyes:
Jul 02, 2020 02:16 AM
For future reference, here’s the original post…
Still dangerous though.