So I want to have "Red Green and Yellow" Icon Set Conditional Formatting based on the one cell value.
Criterias' for color Scheme :
We have two columns with values - current number
and operational number
The Green Color Circle (from conditional formatting Icon set) should show in separate third column if the current number is equal to or less than operational number
The Yellow Color Circle (from conditional formatting Icon Set) should show if the current number is greater than operational number but less than the operational number + buffer (which I am using is 1%)
The Red Color Circle ( from conditional formatting Icon Set) should show if the current number is greater than operational number plus the buffer percentage (1%)
I am using nested if statements to first show values as red, green and yellow and then use color scheme to color them or use icon set.
=IF((Column1+Column2)<=(Column2+Column3),"Green",IF((Column1+Column2)>=(Column2+column3),"Red"))
- Column 1 here is current number
- Column 2 is the buffer
- Column 3 is the operational number
The above shows me green all the time no matter value. Exceed. Also how to use icon set keeping these criterias. I know i could color the cell based on the descriptive equals to value but hard to do icon set. Any pointers, ideas appreciated.
IF
works in both conditions before nesting. – Sam