Conditional Formating: linking to display another cell

J

Jason

Hello, I am trying to make a traffic light with symbols and I've read to 'use
a separate cell for the dropdown choices, with their resulting value linked
into the formatted cell through an IF function, using the character that you
want to
display.'

So:
=IF someone enters '1' in B8, THEN display contents of $C$4 (will it display
font and attributes?)
=IF someone enters '2' in B8, THEN display contents of $C$5
=IF someone enters '3' in B8, THEN display contents of $C$6

But I've been reading everywhere and CF is very new to me and I need some
guidence if you have the time. thank you!
 
B

Bernard Liengme

Jason,
Conditional formatting has to do with changing the text colour, text font,
the colour fill etc of a cell based on the value in that cell or another
cell. So we could have B8 go from green to yellow to red when a use typed 1,
2 or 3 in that cell. What CF cannot do is change what value is displayed in
the cell.

The IF function is a conditional FORMULA. So in any cell (say D8) we might
use:
IF(B8 = 1, "Value is 1", "Value is not 1")

The syntax is =IF(condition, true_value, false_value)

We can next IF statements as in
=IF(B8=1,C4, IF(B8=2, C5, C6))
The cell with this formula (it cannot be B8 or C4:C6) will display what is
in C4 when B8 has value 1, what is in C5 when B8 has value 2, or what is in
C6 when B8 has value 3 (or anything else of that matter)

This formula will do the same =CHOOSE(B8,C4,C5,C6); except when B8 is some
value other than 1,2 or 3 it will display the #VALUE! error.

best wishes
 
J

Jason

Thanks Bernard, I think CF doesn't change the font? I have excell 2003 SP3
btw.

I used =IF(B8=1,C4, IF(B8=2, C5, C6)) but found this wouldn't carry the font
(wingdings) to the destination cell, so I thought of another route >
backwards. As in now instead of someone entering 1, 2, 3, to get the symbol
to display; people select the symbol from a drop down and then the formula
auto enters 1,2,3 depending on what symbol is selected. works!

Thanks again!
 
B

Bernard Liengme

Thanks for the feed back.

By 'font' I meant things like bold, italic.
It is true that CF will not change typeface (TimesRms to Calibri for
example)

Bernard
 

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