Hi,
I want Field 3 to be conditionally formatted based on dropdown options chosen from Field 1 and dropdown options chosen from Field 2. How would the IF statement look? Here is more information:
A & B are dropdown options of Field 1
1, 2, 3, and 4 are dropdown options of Field 2
a, b, c, and d are dropdown options of Field 3 that are conditionally formatted based on what is chosen from Field 1 and Field 2
These are the outcomes I’m trying to achieve:
If A + 1 = a
If A + 2 = a
If A + 3 = b
If A + 4 = b
If B + 1 = c
If B + 2 = c
If B + 3 = d
If B + 4 = d
I tried this using this formula from combo box fields and it didn't work:
If(Field1 = A,
If(Or(Field2 = 1, Field2 = 2),
a,
b)
,
If(Or(Field2 = 1, Field2 = 2),
c,
d)
)
)