Help

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

Solved
Jump to Solution
5250 0
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)