Down arrow Negative number

MikeyG498

New Member
Joined
Jun 5, 2009
Messages
4
I am creating a budget type for in 2007 and i was wondering if I could get a down arrow to appear if the number is negative or up arrow if the number is positive? Thanks in advanced.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try =IF(D4>0,A1,IF(D4<0,A2,A3))

In cell A1, insert a symbol for Up Arrow, A2, a symbol for down arrow, A3, <----> arrow (if you want it for 0).

D4 would be the positive/negative number of interest
 
Upvote 0
Is there anyway I can put the arrow in "D4" with the number.

Lets say I have this
D1 = "$230"
D2 = "$300"
D4 = "=D1-D2"

If the number is D4 is negative can I have the arrow appear in D4 with the number?
 
Upvote 0
Sorry, replace D4 with D2-D1 in the code above, since D4 would create a circular reference.
 
Upvote 0
=D2-D1&" "&IF(D2-D1>0,"↑",IF(D2-D1<0,"↓","↔"))

I just plugged this into Excel 2003 and it worked. I took out the A1, A2, A3 and put the symbols right into the formula. Copy and paste this and it should work for you.....
 
Upvote 0
I figured it out. In Excel 2007 if you go to conditional formatting and setup rules you can do it that way. Thanks for all your help though.
 
Upvote 0
you can also do it with custom formating

#,##0"­";-#,##0"¯";#,##0__
entered in the format cells-custom

and format the cell font as symbol
note the

"­" actually has a character in the quote marks which when font is symbol is the up arrow
and "¯" actually contains the down arrow in symbol font
take =char(173) and =char(175) which in symbol are and down arrows
copy and paste special values copy each symbol whihc appears and paste into the custom number format.

I haven't been able to format it as $ when in symbo. someone else may be able to.

the nice portion of this is that it is still a number.

the Ecel 2007 condional formatting has a problem In that I haven't been able to have a nothing when the cell has zero.
 
Upvote 0

Forum statistics

Threads
1,221,895
Messages
6,162,665
Members
451,781
Latest member
DylantheD

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