ziad alsayed
Well-known Member
- Joined
- Jul 17, 2010
- Messages
- 665
dear all
need to apply conditional formatting to the below data
if data in column F<0 to color in red
if data in column F >0 and<=5% to color in green
if data in column F >=5% and<10% to color in blue
if data in colomn F >=10% to color in pink
the problem i am facing is that some data Show #Value so i used iferror to eliminate them. when applying condotinal to such cells let say >10% ,they will be colored though they are empty.
appreciate any help
Excel 2010
need to apply conditional formatting to the below data
if data in column F<0 to color in red
if data in column F >0 and<=5% to color in green
if data in column F >=5% and<10% to color in blue
if data in colomn F >=10% to color in pink
the problem i am facing is that some data Show #Value so i used iferror to eliminate them. when applying condotinal to such cells let say >10% ,they will be colored though they are empty.
appreciate any help
Excel Workbook | |||||
---|---|---|---|---|---|
D | E | F | |||
13 | 1 640 000 | 1 748 000 | 6.59% | ||
14 | 1 950 000 | 2 088 000 | 7.08% | ||
15 | 2 200 000 | 2 349 000 | 6.77% | ||
16 | 2 570 000 | 2 734 000 | 6.38% | ||
17 | No Range | No Range | |||
18 | 3 270 000 | 3 531 000 | 7.98% | ||
19 | 4 100 000 | 3 875 000 | -5.49% | ||
20 | 4 500 000 | 4 758 000 | 5.73% | ||
FGW ref |
Cell Formulas | ||
---|---|---|
Range | Formula | |
F13 | =IFERROR((E13-D13)/D13,"") | |
F14 | =IFERROR((E14-D14)/D14,"") | |
F15 | =IFERROR((E15-D15)/D15,"") | |
F16 | =IFERROR((E16-D16)/D16,"") | |
F17 | =IFERROR((E17-D17)/D17,"") | |
F18 | =IFERROR((E18-D18)/D18,"") | |
F19 | =IFERROR((E19-D19)/D19,"") | |
F20 | =IFERROR((E20-D20)/D20,"") |