Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Conditional formatting - getting input from another cell

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 793
Default Conditional formatting - getting input from another cell

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Conditional formatting - getting input from another cell

Yes, that works. However... I was trying to apply the rule to the entire
column, rather than one cell and then copying. There is already data in the
document, and if I want to add additional rows in the future, I don't want to
have to copy the formatting further down the columns. I hope that makes
sense.

"Sheeloo" wrote:

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Conditional formatting - getting input from another cell

If you don't want to copy the format down the column, select the whole of
the column before you define the conditions in CF.
--
David Biddulph

"EricD" wrote in message
...
Yes, that works. However... I was trying to apply the rule to the entire
column, rather than one cell and then copying. There is already data in
the
document, and if I want to add additional rows in the future, I don't want
to
have to copy the formatting further down the columns. I hope that makes
sense.

"Sheeloo" wrote:

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value
(color
changes highest to lowest). In column I, you can input "D", "F", or
"T". If
"T" is chosen, then I want the corresponding cell (same row) in column
M to
be a different color than the gradient already being used in the rest
of
column M. Basically, if you choose "T" in column I, it would sort of
exclude
the corresponding cell in column M my making it stand out as a
completely
different color than the rest of the gradient.
Thanks!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 793
Default Conditional formatting - getting input from another cell

You can select the whole column and then apply the conditional formula...

or you can select a range and add the formula referring to the first cell in
the range...
it will be applied to new rows too if you insert them

"EricD" wrote:

Yes, that works. However... I was trying to apply the rule to the entire
column, rather than one cell and then copying. There is already data in the
document, and if I want to add additional rows in the future, I don't want to
have to copy the formatting further down the columns. I hope that makes
sense.

"Sheeloo" wrote:

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Conditional formatting - getting input from another cell

Select the entire column prior to entering the formula.

Make sure you use a relative reference for the rows.

=$l1="T"


Gord Dibben MS Excel MVP

On Thu, 1 Oct 2009 07:31:02 -0700, EricD
wrote:

Yes, that works. However... I was trying to apply the rule to the entire
column, rather than one cell and then copying. There is already data in the
document, and if I want to add additional rows in the future, I don't want to
have to copy the formatting further down the columns. I hope that makes
sense.

"Sheeloo" wrote:

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Conditional formatting - getting input from another cell

Actually, I figured it out through trial and error before I came back and
read this. I had no idea the answers would come so quickly. Thank you! But
yes, the "$" was the key. I had already chosen the column letter, but didn't
know how to tell it that if ANY cell in column I had a "T", then it should
just change it's corresponding buddy over in column M.

"Gord Dibben" wrote:

Select the entire column prior to entering the formula.

Make sure you use a relative reference for the rows.

=$l1="T"


Gord Dibben MS Excel MVP

On Thu, 1 Oct 2009 07:31:02 -0700, EricD
wrote:

Yes, that works. However... I was trying to apply the rule to the entire
column, rather than one cell and then copying. There is already data in the
document, and if I want to add additional rows in the future, I don't want to
have to copy the formatting further down the columns. I hope that makes
sense.

"Sheeloo" wrote:

Add the first condition for cell M1 as
=I1="T" and choose the color

You can have second and third (and more if you have Excel 2007) as the
conditions you already have.

You can then paint it over rest of Col M

"EricD" wrote:

I have conditional formatting on column M based on a dollar value (color
changes highest to lowest). In column I, you can input "D", "F", or "T". If
"T" is chosen, then I want the corresponding cell (same row) in column M to
be a different color than the gradient already being used in the rest of
column M. Basically, if you choose "T" in column I, it would sort of exclude
the corresponding cell in column M my making it stand out as a completely
different color than the rest of the gradient.
Thanks!



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
Conditional Formatting - Input Time Delays Artimues Excel Discussion (Misc queries) 4 April 10th 09 05:00 AM
Conditional Formatting to differentiate between Input and Calcs Ditch Setting up and Configuration of Excel 3 February 5th 08 12:45 AM
Protect Cell Formatting including Conditional Formatting Mick Jennings Excel Discussion (Misc queries) 5 November 13th 07 05:32 PM
conditional formatting w/ color as input vs output tom Excel Worksheet Functions 3 December 13th 06 02:34 AM
Formatting to show 0 as first number in a cell when input triffidbook Excel Worksheet Functions 5 September 25th 06 02:56 AM


All times are GMT +1. The time now is 05:51 AM.

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

About Us

"It's about Microsoft Excel"