Hello everyone. I was facing an issue while a making a saved search. I have a list/record field on my transaction record and I want to get the records on which that field is empty. Currently when I select the field in filter tab it only allows me to change from "any of" or "none of". how can I check if the field is empty or not?
m
michoel
02/26/2020, 10:13 AM
If you don't have have an option to do any of - None - then you could probably use a formula e.g.
CASE WHEN {field} IS NULL THEN 1 ELSE 0 END
is equal to 1
z
Zareen
02/26/2020, 6:32 PM
If you select the double arrow to bring up the list on the criteria, the first selection should say "is empty".
Zareen
02/26/2020, 6:33 PM
Sorry I meant - None - instead of is empty
s
Salman Afzal
02/27/2020, 6:06 AM
@Zareen Thanks, that worked perfectly. I had used this before but I don't know why this time I couldn't remember it. But Thanks alot.