Is it possible to Concatenate Symbols and Text in Single Cell

andyka

Board Regular
Joined
Sep 20, 2021
Messages
52
Office Version
  1. 2019
Platform
  1. Windows
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

KPI example.xlsx
BCD
2
3Overall
4Amber
55Stable
66Critical
734Warning
8
9
1034Warning
11
12
13
14
Sheet1
Cell Formulas
RangeFormula
C10C10=IF(D4="Green",CHAR(53),IF(D4="Red",CHAR(54),IF(D4="Amber",CHAR(51)&CHAR(52),"")))
D10D10=IF(C10=CHAR(53),"Stable",IF(C10=CHAR(54),"Critical",IF(C10=CHAR(51)&CHAR(52),"Warning","")))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10Cell Value="Critical"textNO
D10Cell Value="Stable"textNO
D10Cell Value="Warning"textNO
C10Cell Value=CHAR(54)textNO
C10Cell Value=CHAR(51)&CHAR(52)textNO
C10Cell Value=CHAR(53)textNO
D9Expression=IF(D4="Green",CHAR(5)&" Stable",IF(D4="Amber",CHAR(6)&" Critical",IF(D4="Red",CHAR(34)&" Warning","")))textNO
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Deleted - unfortunately, even downloading the file shared to Google Drive doesn't display the icon set :cry:
 
Last edited:
Upvote 0
Hi, instead of using webdings, you could use a normal font and embed the equivalent unicode characters that are represented by the webdings font directly into your formula - you can then easily concatenate these without issue - for example:

Book3
ABCD
1
2Stable⯇⯈
3Overall
4amber
55Stable
66Critical
734Warning
8
9
10⯇⯈Stable
Sheet1
Cell Formulas
RangeFormula
D2D2=D10&C10
C10C10=IF(D4="Green","⯅",IF(D4="Red","⯅",IF(D4="Amber","⯇⯈","")))
D10D10=IF(C10="⯅","Stable",IF(C10="⯆","Critical",IF(C10="⯇⯈","Warning","")))
 
Upvote 0
Solution
Hi, instead of using webdings, you could use a normal font and embed the equivalent unicode characters that are represented by the webdings font directly into your formula - you can then easily concatenate these without issue - for example:

Book3
ABCD
1
2Stable⯇⯈
3Overall
4amber
55Stable
66Critical
734Warning
8
9
10⯇⯈Stable
Sheet1
Cell Formulas
RangeFormula
D2D2=D10&C10
C10C10=IF(D4="Green","⯅",IF(D4="Red","⯅",IF(D4="Amber","⯇⯈","")))
D10D10=IF(C10="⯅","Stable",IF(C10="⯆","Critical",IF(C10="⯇⯈","Warning","")))
Thank you so much for your help! You're a Star
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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