Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default summarizing conditional formats

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default summarizing conditional formats

You need a complcated macro to determine the colors that are being displyed
from a conditional formated cell. See webpage below for more detailed
explanation and a sample of the code you would need.

http://www.cpearson.com/Excel/CFColors.htm

"raking08" wrote:

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default summarizing conditional formats

Thanks Joel, This looks like the right approach, I was only hoping for a non
VBA solution as I am not a programmer. The active condition is exactly what I
need ( not the trick is to get it to work to return a sum for a stack of
cells..

"Joel" wrote:

You need a complcated macro to determine the colors that are being displyed
from a conditional formated cell. See webpage below for more detailed
explanation and a sample of the code you would need.

http://www.cpearson.com/Excel/CFColors.htm

"raking08" wrote:

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default summarizing conditional formats

I don't think counting the colors in the conditional formula cells is the
correct way of attacking the problem. The conditions that color the cells
can be duplicate using formulas in an auxilary cell.

I fyou have three conditions in the contional format

Red : A1 less than 25
blue : A1 25 to 50
Green: A1 50 to 100


You can put in another cell

=LOOKUP(A1,{0,25,50;"Red","Blue","Green"})

then you can count the colors in a different column.


"raking08" wrote:

Thanks Joel, This looks like the right approach, I was only hoping for a non
VBA solution as I am not a programmer. The active condition is exactly what I
need ( not the trick is to get it to work to return a sum for a stack of
cells..

"Joel" wrote:

You need a complcated macro to determine the colors that are being displyed
from a conditional formated cell. See webpage below for more detailed
explanation and a sample of the code you would need.

http://www.cpearson.com/Excel/CFColors.htm

"raking08" wrote:

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default summarizing conditional formats

Indeed this is a great workaround for when the stoplights are set based on
numbers and may be the way we end up as counting colours and applying a
weighting ( a second set of columns) gets me to the rolled up stoplight. I
will only need to reconfigure the individual lits base don numbers rather
than % and other formula as they are currently done. The ActiveCondition is
more elegant, but above my VBA capability...Thanks for this hint I am
applying it now.

"Joel" wrote:

I don't think counting the colors in the conditional formula cells is the
correct way of attacking the problem. The conditions that color the cells
can be duplicate using formulas in an auxilary cell.

I fyou have three conditions in the contional format

Red : A1 less than 25
blue : A1 25 to 50
Green: A1 50 to 100


You can put in another cell

=LOOKUP(A1,{0,25,50;"Red","Blue","Green"})

then you can count the colors in a different column.


"raking08" wrote:

Thanks Joel, This looks like the right approach, I was only hoping for a non
VBA solution as I am not a programmer. The active condition is exactly what I
need ( not the trick is to get it to work to return a sum for a stack of
cells..

"Joel" wrote:

You need a complcated macro to determine the colors that are being displyed
from a conditional formated cell. See webpage below for more detailed
explanation and a sample of the code you would need.

http://www.cpearson.com/Excel/CFColors.htm

"raking08" wrote:

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default summarizing conditional formats

Joey,
This was definitely the right direction! many thanks. Ultimately it took an
extra 3 columns per each individual query/metric period in order to 1st re
quantify the query metric as a color, then add the weight then vlookup to
provide a numeric value for the color and then to apply the weighting
formulae. But now I have a normalized value i can sum and reapply conditions
to get a "normalized group stoplight"

looks great and very easy to control.. thanks again

"Joel" wrote:

I don't think counting the colors in the conditional formula cells is the
correct way of attacking the problem. The conditions that color the cells
can be duplicate using formulas in an auxilary cell.

I fyou have three conditions in the contional format

Red : A1 less than 25
blue : A1 25 to 50
Green: A1 50 to 100


You can put in another cell

=LOOKUP(A1,{0,25,50;"Red","Blue","Green"})

then you can count the colors in a different column.


"raking08" wrote:

Thanks Joel, This looks like the right approach, I was only hoping for a non
VBA solution as I am not a programmer. The active condition is exactly what I
need ( not the trick is to get it to work to return a sum for a stack of
cells..

"Joel" wrote:

You need a complcated macro to determine the colors that are being displyed
from a conditional formated cell. See webpage below for more detailed
explanation and a sample of the code you would need.

http://www.cpearson.com/Excel/CFColors.htm

"raking08" wrote:

Is there a way to assign a specific value to a "stoplight conditions (
without having to write a complicated "if" statement in order to summarize a
group of individual rules into a single "stoplight" when the actual data does
not normalize easily. ?

in other words, is there something behind the scenes in conditional
formating that "knows" that a cell is red, yellow or green that can be
combined into in new summary rules ?

I am rolling up a 100 query dashboard into small groups

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
6 CONDITIONAL FORMATS Songoku Excel Discussion (Misc queries) 7 July 4th 08 12:47 AM
Conditional formats- paste special formats? jcarney Excel Discussion (Misc queries) 1 November 1st 07 06:37 PM
paste conditional formats as formats leo Excel Discussion (Misc queries) 2 July 5th 07 10:06 AM
4 conditional formats? Amanda Excel Worksheet Functions 4 September 1st 06 07:58 PM
More than three conditional formats? bludovico Excel Discussion (Misc queries) 1 August 3rd 05 07:36 PM


All times are GMT +1. The time now is 04:39 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"