Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
MikeHerb
Contributor III
Contributor III

I want to set Not Null entries as yes and null entries as no for filter

I have this column named "Deleted" which is when it was deleted:

Screen Shot 2021-03-24 at 11.03.37.png

but rather than having random dates and times I want to set Null as No and Not Null as Yes.

How do I go about this?

1 Solution

Accepted Solutions
Vegar
MVP
MVP

You could do this with an IF() statement. 

If([Deleted]='NULL', 'No', 'Yes')

View solution in original post

2 Replies
Vegar
MVP
MVP

You could do this with an IF() statement. 

If([Deleted]='NULL', 'No', 'Yes')

MikeHerb
Contributor III
Contributor III
Author

@Vegar Thank you so much! that worked perfectly!! I was making the expression way too complicated! hahah