Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Looking for a field that is "not empty" in an if statement

Topic Labels: Formulas
Solved
Jump to Solution
17116 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Steven_Joiner
5 - Automation Enthusiast
5 - Automation Enthusiast

I’m sure it’s here or obvious, but I’m not sure what to search for. I simply want a formula that says:

If Field A is not empty, then 1 else 2.

Sorry if it’s obvious.

Thanks.

1 Solution

Accepted Solutions
Moe
10 - Mercury
10 - Mercury

IF(A!=BLANK(),1,2) or IF(A=BLANK(),2,1) it’s the same thing.

See Solution in Thread

2 Replies 2
Moe
10 - Mercury
10 - Mercury

IF(A!=BLANK(),1,2) or IF(A=BLANK(),2,1) it’s the same thing.

Great suggestions @Moe! Another route you can take is:

IF({Field A}, 1, 2)