What is the syntax to custom filter a field for all of the values that are empty (blank)? I tried ISEMPTY([GROUP_ID]), but it didn't work.
Solved! Go to Solution.
I'd go for
IsNull([Group_ID]) OR Trim([Group_ID])=''
assuming you want both nulls and whitespace
I filtered with GROUP_ID = "" and this seemed to work.
thank you for the suggestions guys.
I would still add the NULL check as well just in case there are some in there or there might be some in there in the future.