Skip to main content
Solved

Help with Checkmark formula


I’m trying to create a formula that looks for either of 2 fields to be checked. Can someone tell me what I’m doing wrong? I can get it to work with either/or but trying to look up both, I’m stumped. Thank you!

IF((Agreement =1) OR(IF{Umbrella Agreement}=1)),“ :smiling_face_with_sunglasses: ”

Best answer by JonathanBowen

@Cara_Shaw, @andywingrave

The format of the OR is the same as the AND, i.e.:

IF(OR({Agreement} = 1, {Umbrella Agreement} = 1), 'Success', 'Failure')

View original
Did this topic help you find an answer to your question?

5 replies

Forum|alt.badge.img+19

Hello! Breaking it down, you would format it as follows to consider two criteria:

Edited

AND statement
AND((Agreement =1), ({Umbrella Agreement}=1))

or

OR((Agreement =1),(IF{Umbrella Agreement}=1))

Then, adding in the IF you would write this like :
IF(OR((Agreement =1), (IF{Umbrella Agreement}=1))," ^_^ ")

Hope that helps

NB (This is just formulas from memory - So may not be completely correct, but hopefully it will at least show you how to structure a formula like this.


  • Author
  • New Participant
  • 4 replies
  • May 5, 2020
andywingrave wrote:

Hello! Breaking it down, you would format it as follows to consider two criteria:

Edited

AND statement
AND((Agreement =1), ({Umbrella Agreement}=1))

or

OR((Agreement =1),(IF{Umbrella Agreement}=1))

Then, adding in the IF you would write this like :
IF(OR((Agreement =1), (IF{Umbrella Agreement}=1))," ^_^ ")

Hope that helps

NB (This is just formulas from memory - So may not be completely correct, but hopefully it will at least show you how to structure a formula like this.


Tried all those and still not working. Sorry, I’m so new to this.


JonathanBowen
Forum|alt.badge.img+18

@Cara_Shaw, @andywingrave

The format of the OR is the same as the AND, i.e.:

IF(OR({Agreement} = 1, {Umbrella Agreement} = 1), 'Success', 'Failure')


  • Author
  • New Participant
  • 4 replies
  • May 5, 2020

That worked!! Many thanks.


Forum|alt.badge.img+19
Cara_Shaw wrote:

That worked!! Many thanks.


That was my copy paste mistake, sorry! Thanks @JonathanBowen


Reply