Hello,
I am working on a formula where I am referencing one sheet with numbers to set an indicator on another, to determine if something is Red, yellow or green.
I am using a single cell called difference on my reference Sheet. The code should read if Less than 20,000.00 it should be Red, greater than 100,000.00 should be green, or it should be yellow
I tried some basic stuff just to see if I could get the indicator to work but nope
=IF({Difference}, @cell < “20000.00”, Red, IF({Difference}, @cell >= "100000.00=, Green, Yellow))
=IF({Difference}, @cell < “$20,000.00”, Red, IF({Difference}, @cell >= "$100,000.00", Green, Yellow))
=IF({Difference}, @cell < “20000”, Red, IF({Difference}, @cell >= "100000", Green, Yellow))
I am literally referencing a single cell on the reference sheet. Any Help would be appreciated.
Should I be using at Row? 😕
Caroline