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.
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.
IF(A!=BLANK(),1,2)
or IF(A=BLANK(),2,1)
it’s the same thing.
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.