Skip to main content
Solved

IF AND Formula with 2 criteria to comply

  • May 9, 2023
  • 2 replies
  • 33 views

Forum|alt.badge.img+3

I can't get this formula to work.

My table has 3 fields:

  • Agreement Signed
  • WYNTK Signed
  • Intake Form

Each field has a single select option, "Yes" , "n/a" or "In Progress".

I have a final field "STATUS" with a formula - should all three fields = "Yes" or "n/a" =  "✅" 

If any one of the fields = "In Progress" then the STATUS field = "❌" 

 

 
IF(
   AND(
     {Agreement Signed}="Yes",
     {Agreement Signed}="n/a",
     {WYNTK Signed}="Yes"
     {WYNTK Signed}="n/a",
     {Intake Form}="Yes"
     {Intake Form}="n/a"
   ),
   "✅",
   "❌"
)

Best answer by TheTimeSavingCo

Could you try this out?

IF( AND( OR( {Agreement Signed}="Yes", {Agreement Signed}="n/a" ), OR( {WYNTK Signed}="Yes", {WYNTK Signed}="n/a" ), OR( {Intake Form}="Yes", {Intake Form}="n/a" ) ), "✅", "❌" )

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Could you try this out?

IF( AND( OR( {Agreement Signed}="Yes", {Agreement Signed}="n/a" ), OR( {WYNTK Signed}="Yes", {WYNTK Signed}="n/a" ), OR( {Intake Form}="Yes", {Intake Form}="n/a" ) ), "✅", "❌" )

Forum|alt.badge.img+3
  • Author
  • New Participant
  • May 9, 2023

Could you try this out?

IF( AND( OR( {Agreement Signed}="Yes", {Agreement Signed}="n/a" ), OR( {WYNTK Signed}="Yes", {WYNTK Signed}="n/a" ), OR( {Intake Form}="Yes", {Intake Form}="n/a" ) ), "✅", "❌" )

@TheTimeSavingCo Worked! Thank you so much! 🎉