Is this possible ?

S

Steakman

I was wondering if it is possible to do the following in Excel, and if so,
where I can find out how ?

I am producing a Management Report for all levels of staff and would like
the report to do the following:
eg
If cell A1> 10, then in cell A2 display a "smiley face"
If cell A1=10, then in cell A2 display a "neutral face"
If cell A1 < 10, then in cell A2 display an "unhappy face"

It would be great if the "faces" could be in colour (green. amber, red), and
I presume they would need to be an image i.e giff file. - Making the images
is easy, but doing a formula is beyond me!

Anyone got any help or suggestions.

Thanks

Andre
 
R

RagDyer

Enter this formula into A2:

=IF(A10>10,"J",IF(A10=10,"K","L"))

Then, format A2 to the WingDings font.

This will give you a sad face even when A10 is empty (<10).

If you want A2 empty when A10 is empty, try this:

=IF(A10>10,"J",IF(A10=10,"K",IF(A10="","","L")))
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================



I was wondering if it is possible to do the following in Excel, and if so,
where I can find out how ?

I am producing a Management Report for all levels of staff and would like
the report to do the following:
eg
If cell A1> 10, then in cell A2 display a "smiley face"
If cell A1=10, then in cell A2 display a "neutral face"
If cell A1 < 10, then in cell A2 display an "unhappy face"

It would be great if the "faces" could be in colour (green. amber, red), and
I presume they would need to be an image i.e giff file. - Making the images
is easy, but doing a formula is beyond me!

Anyone got any help or suggestions.

Thanks

Andre
 
H

Harald Staff

Hi Andre

Fun idea and very simple to do. No images needed. Formula in A2:
=CHAR(74+(A1<=10)+(A1<10)+(A1<=5))
Format the cell with font "Wingdings" and there you are.

(The last part
+(A1<=5)
displays a bomb if the value is 5 or below. Remove it if you hate it.)

Coloring is a little worse, but far from impossible. Use Conditional formatting for that
(Format menu).
 

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

Top