CHAR or CHR: is there code number for a downward arrow?

itr674

Well-known Member
Joined
Apr 10, 2002
Messages
1,790
Office Version
  1. 2016
Platform
  1. Windows
I've inserted a downward arrow in a cell and would like to see if there is a code number that I could use in a formula?

I used =CHAR() to find 255 characters, is that all there is?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi

That's the extended ASCII character set (so that is all there is using the CHAR function). Potentially you could experiment with various fonts (Wingdings comes to mind, for example) as I expect one of the Ascii characters (1-255) appears as a downwards arrow in that font set (can't be certain though - you'll have to test it out).

Hope this helps!
 
Upvote 0
RichardSchollar--thanks, I will give that a shot...
 
Upvote 0
The dollar sign $ or the lower case letter i in WingDings 3 would most closely resemble the down arrow.
 
Upvote 0
That will not work on US versions...the CHAR function does not extend to DBCS characters. It could be accomplished with VBA using ChrW:

ActiveCell.Value = ChrW(8595)

or

ActiveCell.Value = ChrW(8659)

depending on the desired look of the arrow.
 
Upvote 0
That will not work on US versions...the CHAR function does not extend to DBCS characters. It could be accomplished with VBA using ChrW:

ActiveCell.Value = ChrW(8595)

or

ActiveCell.Value = ChrW(8659)

depending on the desired look of the arrow.

Thanks, Tom

It's good to know.
 
Upvote 0

Forum statistics

Threads
1,223,578
Messages
6,173,168
Members
452,504
Latest member
frankkeith2233

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