Hello,
I'm trying to write a formula that looks at two columns, and if the numbers in both columns are equal, then it will return the green circle, If not then the circle will be red. What I'm having trouble with is if one of the cells is blank then I would like it have the return be yellow. However I keep getting an incorrect argument error.
This is what I have so far.
=IF([Job Number]@row <> [Job #]@row, "Red", IF(ISBLANK([Job #]@row), "Yellow"), "Green")
I'm not really sure were to go from here so any help will be appreciated. Thanks