Hi there -
Trying to create an "if" formula that has an "or" statement built within. Basically, if the tier is 1, partner is TB, and CDs is SK, it should equal 100. But if the tier is 2, partner is TB, and CDs is SK, it should be 90. I have more options to add to this (another tier level and other partners), so it isn't just an "otherwise" statement. I have about 10 different possible outcomes based on tier / partner / CDs.
=IFERROR(IF([OVERALL TIER]@row = "Tier I", IF([PARTNER]@row = "TB", IF([CDs]@row = "SK", "100")))), OR(IF([OVERALL TIER]@row = "Tier II", IF([PARTNER]@row = "TB", IF([CDs]@row = "SK", "90"))))
Any help is appreciated!