Is it possible Concatenate CHAR symbols "Webdings" and text from two different Cells. I am using "Webdings" in cell C10 and text in D10. I want Results in D2
Cell Formulas | ||
---|---|---|
Range | Formula | |
C10 | C10 | =IF(D4="Green",CHAR(53),IF(D4="Red",CHAR(54),IF(D4="Amber",CHAR(51)&CHAR(52),""))) |
D10 | D10 | =IF(C10=CHAR(53),"Stable",IF(C10=CHAR(54),"Critical",IF(C10=CHAR(51)&CHAR(52),"Warning",""))) |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
D10 | Cell Value | ="Critical" | text | NO |
D10 | Cell Value | ="Stable" | text | NO |
D10 | Cell Value | ="Warning" | text | NO |
C10 | Cell Value | =CHAR(54) | text | NO |
C10 | Cell Value | =CHAR(51)&CHAR(52) | text | NO |
C10 | Cell Value | =CHAR(53) | text | NO |
D9 | Expression | =IF(D4="Green",CHAR(5)&" Stable",IF(D4="Amber",CHAR(6)&" Critical",IF(D4="Red",CHAR(34)&" Warning",""))) | text | NO |