Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I want to display a symbol in a cell, the symbol displayed depends on the
cell next to it being a positive number or negative number. I would like to have this in the form of a IF(A10,TRUE,FALSE) where different symbols would appear for true and false. Any one have a way to do this? |
#2
![]() |
|||
|
|||
![]()
First, find the ASCII character code for the symbol you wish to
display. Then use a formula like =IF(A10,CHAR(mmm),CHAR(nnn)) -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "JB in Kansas" wrote in message ... I want to display a symbol in a cell, the symbol displayed depends on the cell next to it being a positive number or negative number. I would like to have this in the form of a IF(A10,TRUE,FALSE) where different symbols would appear for true and false. Any one have a way to do this? |
#3
![]() |
|||
|
|||
![]()
You can return various characters and then change the font to get a symbol.
For example, in B1 you can use: =IF(A10,CHAR(164),CHAR(209)) Format B1 as Webdings. You'll get a clipboard or key. To see the entire character map in different fonts, type this into row 1 of any cell: =CHAR(ROW()) and fill down to row 252. Now try different fonts on the column like Webdings, Wingdings, Marlett, etc. HTH Jason Atlanta, GA "JB in Kansas" wrote: I want to display a symbol in a cell, the symbol displayed depends on the cell next to it being a positive number or negative number. I would like to have this in the form of a IF(A10,TRUE,FALSE) where different symbols would appear for true and false. Any one have a way to do this? |
#4
![]() |
|||
|
|||
![]()
Jason and Chip, Thanks a bunch, I think I got it.
"JB in Kansas" wrote: I want to display a symbol in a cell, the symbol displayed depends on the cell next to it being a positive number or negative number. I would like to have this in the form of a IF(A10,TRUE,FALSE) where different symbols would appear for true and false. Any one have a way to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
referencing named formula using INDIRECT function | Excel Worksheet Functions | |||
Simplify formula | Excel Worksheet Functions | |||
how do i write a formula and keep in in formula form, so it DOESN. | Excel Discussion (Misc queries) | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) | |||
how do I display "meter square" symbol in a formula cell ? | Excel Worksheet Functions |