I have three columns that I want to compare. I thought an If(and( statement would do it but I keep getting #incorrect argument or #unparsable errors.
Each column is a dollar amount and I basically want if Column 1 < Column 2 and Column 3 return a value.
Below is the expression I've been trying.
=IF(AND([EXTENDED COST 3]@row <= [EXTENDED COST 2]@row , [EXTENDED COST 1]@row , "Green", "Red"))
This feels like it should be simple and I'm missing something.