Instead of the word "dropped" could I use an arrow?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In my spread sheet I would like to us a arrow to show if an amount dropped or
went up in amount. This is what I have for now:
=IF(D31>E31,"Up","Dropped")
I would like to have a black arrow for up and a red one for dropped.
VB maybe?

Thanks
 
format the cell with the formula for the font windings

=IF(D31>E31,char(233),char(234))

or use another font that has an arrow more to your liking - but you see the
approach.
 
WingDings is a font that you get through Format>Cells>Font
The code Tom gave you is a formula to be pasted into the cell where you want
the arrow to appear.
 
Hi pgarcia.
Try:
=IF(D31>E31;"h";"i")
formatting Wingdings 3 and Bold
Regards
Eliano
 
Char(234) is an ASCII code which will print a character of some type
depending on which font is being used. You can do the same thing with the
code that eliano has supplied you. The point of using either of formulas is
that the arrow symbol resides in the WingDings font. If the cell is
formatted for WingDings either formula should work.
 
Windows Start button|Run
type:
charmap
and hit enter

In WinXP, CharMap is buried under the Accessories|System Tools program group.

ps. If you're using office 2002+, you can use:
Insert|symbol

Chip Pearson has an addin that may help (if you're using xl2k or lower).
http://www.cpearson.com/excel/download.htm
(look for Symbolizer and make sure you get the correct version)
 
Ahh, my crazy IT group has remove it from my system. Crazy, a? I will try to
get them to reinstall. Do you know of a website that may have them all listed?
 
I don't know where it can be downloaded.

But maybe you can go into control panel and see if you can add the accessories
to Windows (add/remove programs, then Add/remove windows components (under
accessories and utilities). (in WinXP anyway)
 
Ok, go the Chart map. Do you know how to translate the character code?
0x77 = ?

Thanks
 
Only by opening Character map and scrolling through the list.

You can see the hex representation for any selected symbol at the bottom of the
dialog.

Or you could convert your hex number to decimal (=hex2dec()) and use =char() to
see the result--format it as your favorite font.

So with 77 in A1 and this in B1:
=CHAR(HEX2DEC(A1))
I saw a w (using the Arial font).
Ok, go the Chart map. Do you know how to translate the character code?
0x77 = ?

Thanks
 
Cool, I have the number ofthe char map in A1 and B1 I have =hex2dec(B2) then
c1 has =char(B2), C1 font is Wings and that did, THANKS.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top