Hello! I’m hoping someone can help me with a nested if statement. I am trying to list a specific price for a product or combination of products. Airtable keeps telling me that I have an invalid formula, please check formula text. Can anyone see anything specific here that needs to change?
IF
(Foursome=TRUE(), 59.95,
IF(Twosome=TRUE(), 39.95,
IF(AND(IB=“IB”, HH=“HH”), 45.90,
IF(OR(IB=“IB”, HH=“HH”), 22.95,
IF(OR(EP=“EP”, EP2=“EP2”), 11.95,
IF(AND((IB=“”, HH=“”), (AND(EP=“EP”, EP2=“EP2”))), 23.90,
IF(AND((OR(IB=“IB”, HH=“HH”), (OR(EP=“EP”, EP2=“EP2”)))), 34.90
IF(AND((OR(IB=“IB”, HH=“HH”), (AND(EP=“EP”, EP2=“EP2”)))), 46.85, 0))))))))
Thank you in advance for your help!!

