CF Icon Sets Based on values contained in a row

MasterK

New Member
Joined
Jan 15, 2015
Messages
15
Excel 2013
Windows 7 64

Good Afternoon. I'm trying to use an Icon set of the Green, Yellow, Red type that returns a Green "check mark" if the row A1:F1 containers no errors. Something like the below. The values in "Term QTY" and "Term Size" are populated by an Index/Match formula based on values in Column A against another sheet in same workbook.

="NOT(ISERROR($A$8$:$F$8)"

But, it did not work. And then of course a Red "X" if there are errors. I'm having no luck. FYI the column with X's in it is just a separator that's colored solid black in my sheet to help keep data distinguishable. Appreciate any help!
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Boking[/TD]
[TD]QTY[/TD]
[TD]Size[/TD]
[TD]x
[/TD]
[TD]Term Qty[/TD]
[TD]Term Size[/TD]
[TD="align: center"]CF Icon Set[/TD]
[/TR]
[TR]
[TD]ABC123456[/TD]
[TD]5[/TD]
[TD]20ST[/TD]
[TD]x[/TD]
[TD]5[/TD]
[TD]20ST[/TD]
[TD]Insert check here[/TD]
[/TR]
[TR]
[TD]ABC654321[/TD]
[TD]3[/TD]
[TD]40HC[/TD]
[TD]x[/TD]
[TD]BKG not Found[/TD]
[TD]#N/A[/TD]
[TD]Insert red X here[/TD]
[/TR]
[TR]
[TD]DEF123456[/TD]
[TD]10[/TD]
[TD]40HC[/TD]
[TD]x[/TD]
[TD]10[/TD]
[TD]40HC[/TD]
[TD]Insert check here[/TD]
[/TR]
[TR]
[TD]DEF654321[/TD]
[TD]1[/TD]
[TD]40ST[/TD]
[TD]x[/TD]
[TD]BKG not Found[/TD]
[TD]#N/A[/TD]
[TD]Inserd red X here[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]x[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi,

You can use this formula for your CF:


Book1
ABCDEFGH
1BokingQTYSizexTerm QtyTerm SizeCF Icon Set
2ABC123456520STx520STFALSETRUE
3ABC654321340HCxBKG not Found#DIV/0!TRUEFALSE
4DEF1234561040HCx1040HCFALSETRUE
5DEF654321140STxBKG not Found#N/ATRUEFALSE
Sheet3
Cell Formulas
RangeFormula
G2=ISERROR(SUM(A2:F2))
H2=NOT(ISERROR(SUM(A2:F2)))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,825
Messages
6,181,190
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top