Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
H H is offline
external usenet poster
 
Posts: 57
Default Conditional Question

Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
Thank you!!!
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 5,441
Default Conditional Question

H,

Select your cells, then use the CF with the formula

=AND(B2=1000000,MAX($A2:A2)<1000000)

where the Activecell is B2 at the time that you apply the formula.

To extract the year/quarter, use the array formula (enter using Ctrl-Shift-Enter)

=IF(MAX(B2:Z2)=1000000,INDEX($1:$1,1,MIN(IF(B2:Z2 =1000000,COLUMN(B2:Z2),1000))),"Never above 1MM")

Change the Zs to the column letter of your last column. This assumes that you 2006-1 etc values are
in row 1.

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
Thank you!!!



  #3   Report Post  
Posted to microsoft.public.excel.newusers
H H is offline
external usenet poster
 
Posts: 57
Default Conditional Question

thanks Bernie

I think the highlighting is working but my formula to pull the year/qtr
isn't. Here's what I typed

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF(B5:A K5=1000000,COLUMN(B5:AK5),1000))),"Never above 1MM")



"Bernie Deitrick" wrote:

H,

Select your cells, then use the CF with the formula

=AND(B2=1000000,MAX($A2:A2)<1000000)

where the Activecell is B2 at the time that you apply the formula.

To extract the year/quarter, use the array formula (enter using Ctrl-Shift-Enter)

=IF(MAX(B2:Z2)=1000000,INDEX($1:$1,1,MIN(IF(B2:Z2 =1000000,COLUMN(B2:Z2),1000))),"Never above 1MM")

Change the Zs to the column letter of your last column. This assumes that you 2006-1 etc values are
in row 1.

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
Thank you!!!




  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 5,441
Default Conditional Question

H,

That works fine for me - did you array enter it (Ctrl-Shift-Enter instead of just Enter)?

If you have spaces or other text in B5:AK5, then you need to array enter a formula like this:

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF((ISN UMBER(B5:AK5))*(B5:AK5=1000000),COLUMN(B5:AK5),10 00))),"Never
above 1MM")

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
thanks Bernie

I think the highlighting is working but my formula to pull the year/qtr
isn't. Here's what I typed

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF(B5:A K5=1000000,COLUMN(B5:AK5),1000))),"Never above
1MM")



"Bernie Deitrick" wrote:

H,

Select your cells, then use the CF with the formula

=AND(B2=1000000,MAX($A2:A2)<1000000)

where the Activecell is B2 at the time that you apply the formula.

To extract the year/quarter, use the array formula (enter using Ctrl-Shift-Enter)

=IF(MAX(B2:Z2)=1000000,INDEX($1:$1,1,MIN(IF(B2:Z2 =1000000,COLUMN(B2:Z2),1000))),"Never above
1MM")

Change the Zs to the column letter of your last column. This assumes that you 2006-1 etc values
are
in row 1.

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
Thank you!!!






  #5   Report Post  
Posted to microsoft.public.excel.newusers
H H is offline
external usenet poster
 
Posts: 57
Default Conditional Question

Thanks, here's what mine looks like when I do Ctrl-Shift Enter
=IF(MAX(B5:AK5)=1000000,INDEX(1:1,1,MIN(IF((ISNUM BER(B5:AK5))*(B5:AK5=1000000),COLUMN(B5:AK5),1000 ))),"Never ")

but it has brackets around the outside

Out of 70 rows it's only pulling one in with the year/qtr

"Bernie Deitrick" wrote:

H,

That works fine for me - did you array enter it (Ctrl-Shift-Enter instead of just Enter)?

If you have spaces or other text in B5:AK5, then you need to array enter a formula like this:

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF((ISN UMBER(B5:AK5))*(B5:AK5=1000000),COLUMN(B5:AK5),10 00))),"Never
above 1MM")

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
thanks Bernie

I think the highlighting is working but my formula to pull the year/qtr
isn't. Here's what I typed

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF(B5:A K5=1000000,COLUMN(B5:AK5),1000))),"Never above
1MM")



"Bernie Deitrick" wrote:

H,

Select your cells, then use the CF with the formula

=AND(B2=1000000,MAX($A2:A2)<1000000)

where the Activecell is B2 at the time that you apply the formula.

To extract the year/quarter, use the array formula (enter using Ctrl-Shift-Enter)

=IF(MAX(B2:Z2)=1000000,INDEX($1:$1,1,MIN(IF(B2:Z2 =1000000,COLUMN(B2:Z2),1000))),"Never above
1MM")

Change the Zs to the column letter of your last column. This assumes that you 2006-1 etc values
are
in row 1.

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
Thank you!!!








  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 5,441
Default Conditional Question

Ah! You missed the $s on the INDEX(1:1 - that should be INDEX($1:$1

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Thanks, here's what mine looks like when I do Ctrl-Shift Enter
=IF(MAX(B5:AK5)=1000000,INDEX(1:1,1,MIN(IF((ISNUM BER(B5:AK5))*(B5:AK5=1000000),COLUMN(B5:AK5),1000 ))),"Never
")

but it has brackets around the outside

Out of 70 rows it's only pulling one in with the year/qtr

"Bernie Deitrick" wrote:

H,

That works fine for me - did you array enter it (Ctrl-Shift-Enter instead of just Enter)?

If you have spaces or other text in B5:AK5, then you need to array enter a formula like this:

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF((ISN UMBER(B5:AK5))*(B5:AK5=1000000),COLUMN(B5:AK5),10 00))),"Never
above 1MM")

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
thanks Bernie

I think the highlighting is working but my formula to pull the year/qtr
isn't. Here's what I typed

=IF(MAX(B5:AK5)=1000000,INDEX($1:$1,1,MIN(IF(B5:A K5=1000000,COLUMN(B5:AK5),1000))),"Never
above
1MM")



"Bernie Deitrick" wrote:

H,

Select your cells, then use the CF with the formula

=AND(B2=1000000,MAX($A2:A2)<1000000)

where the Activecell is B2 at the time that you apply the formula.

To extract the year/quarter, use the array formula (enter using Ctrl-Shift-Enter)

=IF(MAX(B2:Z2)=1000000,INDEX($1:$1,1,MIN(IF(B2:Z2 =1000000,COLUMN(B2:Z2),1000))),"Never above
1MM")

Change the Zs to the column letter of your last column. This assumes that you 2006-1 etc
values
are
in row 1.

HTH,
Bernie
MS Excel MVP


"H" wrote in message
...
Hi -- is it possible to do conditional formatting that would highlight the
first time a customer hits $1,000,000 or above and then in another column
look for those highlighted and place the year and qtr that happened


I have a pivot table that looks like this

column A Column B Column C Column D etc....
(2000-1 thru 2010-1)
Customer 2006-1 2006-2 2006-3
Customer A $1,000,500 $2,000,000
Customer B $1,000,000 $3,000,000

So I would want to highlight
Customer A the amt in 2006-2 and then create a column in my
spreadsheet that states 2006-2

Customer B highlight the amt in 2006-1 and in another column state 2006-1

Can anyone help?
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
Conditional Format Question srain001 Excel Discussion (Misc queries) 2 December 17th 07 02:37 PM
Conditional maybe IF question Zsolt Szabó Excel Discussion (Misc queries) 3 December 10th 06 09:01 PM
question about conditional sum jinvictor Excel Discussion (Misc queries) 1 June 8th 06 08:03 AM
Conditional Formating Question terri Excel Discussion (Misc queries) 3 November 27th 05 02:01 AM
conditional sum question Devlin Excel Worksheet Functions 6 August 17th 05 07:27 AM


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

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"