Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default Conditional Formating: linking to display another cell

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!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 563
Default Conditional Formating: linking to display another cell

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
--
Bernard Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme

"Jason" wrote in message
...
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!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default Conditional Formating: linking to display another cell

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!


"Bernard Liengme" wrote:

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
--
Bernard Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme

"Jason" wrote in message
...
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!

.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 563
Default Conditional Formating: linking to display another cell

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

"Jason" wrote in message
...
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!


"Bernard Liengme" wrote:

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
--
Bernard Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme

"Jason" wrote in message
...
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!

.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Apply Conditional formating to all cell Kanmi Excel Worksheet Functions 4 July 16th 09 01:06 AM
conditional formating when cell value changes original Ed Excel Discussion (Misc queries) 1 June 13th 07 09:29 AM
conditional cell formating kthornton Excel Discussion (Misc queries) 3 August 29th 06 04:41 PM
Conditional Formating based on another cell SMac Excel Discussion (Misc queries) 5 March 10th 05 07:17 PM
conditional formating for a blank cell wsoung Excel Discussion (Misc queries) 5 March 9th 05 10:15 PM


All times are GMT +1. The time now is 05:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"