Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Conditional Format based upon if statement and max

What I'm attempting to do is write a formula within a conditional format that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great resource!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Format based upon if statement and max

Try this:

Select the range of cells F5:F33
Goto the menu FormatConditional Formatting
Select the Formula Is option
Enter this formula in the box on the right:
=AND($A$5="eligible",F5=MAX(F$5:F$33))
Click the Format button
Select the desired style(s)
OK out

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
What I'm attempting to do is write a formula within a conditional format
that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great resource!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Conditional Format based upon if statement and max

Bill,

Thank you for your response. I inadvertently left out part of what I was
attempting to accomplish. Your formula works perfect if cell $A$5 equals
eligible, however I am trying to conditional format cells F5:F33 based upon
what the corresponding cells in column "A" return.

In my spreadsheet, (see example below) if column "A" indicates eligible for
a corresponding individual in column "B", then I would like to conditional
format column "F" based upon the eligible individuals from column "A"

Once again, thank you in advance for your assistance. I been reading
various posts as well as the help feature in Excel and I am not able tofind
an answer. I'm a newbie to formula writing in Excel.



Row Column "A" Column"B"
5 DNQ Bix
6 Eligible Brandon
7 DNQ Cheeta
8 Eligible Chris
9 Eligible Gary
10 Eligible Glenn
11 DNQ Greg N
12 DNQ JP
13 Eligible Keith
14 Eligible Mike
15 DNQ Rich
16 DNQ Riz
17 Eligible Ryan
18 Eligible Scott B
19 Eligible Scott S
20 Eligible Seth
21 DNQ Todd


"CARFL97" wrote:

What I'm attempting to do is write a formula within a conditional format that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great resource!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Format based upon if statement and max

Ok, then what does the MAX have to do with it?

For example: =if a5="eligible", =max(f5:f33) and then
highlight the applicable max cell in column f .


See if this does what you want:

Formula Is:
=A5="eligible"

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill,

Thank you for your response. I inadvertently left out part of what I was
attempting to accomplish. Your formula works perfect if cell $A$5 equals
eligible, however I am trying to conditional format cells F5:F33 based
upon
what the corresponding cells in column "A" return.

In my spreadsheet, (see example below) if column "A" indicates eligible
for
a corresponding individual in column "B", then I would like to conditional
format column "F" based upon the eligible individuals from column "A"

Once again, thank you in advance for your assistance. I been reading
various posts as well as the help feature in Excel and I am not able
tofind
an answer. I'm a newbie to formula writing in Excel.



Row Column "A" Column"B"
5 DNQ Bix
6 Eligible Brandon
7 DNQ Cheeta
8 Eligible Chris
9 Eligible Gary
10 Eligible Glenn
11 DNQ Greg N
12 DNQ JP
13 Eligible Keith
14 Eligible Mike
15 DNQ Rich
16 DNQ Riz
17 Eligible Ryan
18 Eligible Scott B
19 Eligible Scott S
20 Eligible Seth
21 DNQ Todd


"CARFL97" wrote:

What I'm attempting to do is write a formula within a conditional format
that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great resource!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Conditional Format based upon if statement and max

Bill - I thought max would return the value in column "F" with the largest
amount
in a conditional format.

Your last formula works well to identify the individuals in column "A" who
are eligible, but I also need to identify the individual with the largest
amount in column "F" based upon meeting eligible criteria in column "A".



"T. Valko" wrote:

Ok, then what does the MAX have to do with it?

For example: =if a5="eligible", =max(f5:f33) and then
highlight the applicable max cell in column f .


See if this does what you want:

Formula Is:
=A5="eligible"

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill,

Thank you for your response. I inadvertently left out part of what I was
attempting to accomplish. Your formula works perfect if cell $A$5 equals
eligible, however I am trying to conditional format cells F5:F33 based
upon
what the corresponding cells in column "A" return.

In my spreadsheet, (see example below) if column "A" indicates eligible
for
a corresponding individual in column "B", then I would like to conditional
format column "F" based upon the eligible individuals from column "A"

Once again, thank you in advance for your assistance. I been reading
various posts as well as the help feature in Excel and I am not able
tofind
an answer. I'm a newbie to formula writing in Excel.



Row Column "A" Column"B"
5 DNQ Bix
6 Eligible Brandon
7 DNQ Cheeta
8 Eligible Chris
9 Eligible Gary
10 Eligible Glenn
11 DNQ Greg N
12 DNQ JP
13 Eligible Keith
14 Eligible Mike
15 DNQ Rich
16 DNQ Riz
17 Eligible Ryan
18 Eligible Scott B
19 Eligible Scott S
20 Eligible Seth
21 DNQ Todd


"CARFL97" wrote:

What I'm attempting to do is write a formula within a conditional format
that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great resource!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Format based upon if statement and max

Let's try this. Based on the data below what cell(s) should be highlighted?

E = eligible

E...Joe...10
x...Jane...15
E...Lisa...100
E...Sam...22
x...Tom...100
E...Ann...52

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill - I thought max would return the value in column "F" with the largest
amount
in a conditional format.

Your last formula works well to identify the individuals in column "A" who
are eligible, but I also need to identify the individual with the largest
amount in column "F" based upon meeting eligible criteria in column "A".



"T. Valko" wrote:

Ok, then what does the MAX have to do with it?

For example: =if a5="eligible", =max(f5:f33) and then
highlight the applicable max cell in column f .


See if this does what you want:

Formula Is:
=A5="eligible"

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill,

Thank you for your response. I inadvertently left out part of what I
was
attempting to accomplish. Your formula works perfect if cell $A$5
equals
eligible, however I am trying to conditional format cells F5:F33 based
upon
what the corresponding cells in column "A" return.

In my spreadsheet, (see example below) if column "A" indicates eligible
for
a corresponding individual in column "B", then I would like to
conditional
format column "F" based upon the eligible individuals from column "A"

Once again, thank you in advance for your assistance. I been reading
various posts as well as the help feature in Excel and I am not able
tofind
an answer. I'm a newbie to formula writing in Excel.



Row Column "A" Column"B"
5 DNQ Bix
6 Eligible Brandon
7 DNQ Cheeta
8 Eligible Chris
9 Eligible Gary
10 Eligible Glenn
11 DNQ Greg N
12 DNQ JP
13 Eligible Keith
14 Eligible Mike
15 DNQ Rich
16 DNQ Riz
17 Eligible Ryan
18 Eligible Scott B
19 Eligible Scott S
20 Eligible Seth
21 DNQ Todd


"CARFL97" wrote:

What I'm attempting to do is write a formula within a conditional
format
that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great
resource!






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Conditional Format based upon if statement and max

The cell in which 100 relates to Lisa and the cell that pertains to 100 for
Tom. Thank you very much for your patience with my minimal knowledge, it's
greatly appreciated!

"T. Valko" wrote:

Let's try this. Based on the data below what cell(s) should be highlighted?

E = eligible

E...Joe...10
x...Jane...15
E...Lisa...100
E...Sam...22
x...Tom...100
E...Ann...52

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill - I thought max would return the value in column "F" with the largest
amount
in a conditional format.

Your last formula works well to identify the individuals in column "A" who
are eligible, but I also need to identify the individual with the largest
amount in column "F" based upon meeting eligible criteria in column "A".



"T. Valko" wrote:

Ok, then what does the MAX have to do with it?

For example: =if a5="eligible", =max(f5:f33) and then
highlight the applicable max cell in column f .

See if this does what you want:

Formula Is:
=A5="eligible"

--
Biff
Microsoft Excel MVP


"CARFL97" wrote in message
...
Bill,

Thank you for your response. I inadvertently left out part of what I
was
attempting to accomplish. Your formula works perfect if cell $A$5
equals
eligible, however I am trying to conditional format cells F5:F33 based
upon
what the corresponding cells in column "A" return.

In my spreadsheet, (see example below) if column "A" indicates eligible
for
a corresponding individual in column "B", then I would like to
conditional
format column "F" based upon the eligible individuals from column "A"

Once again, thank you in advance for your assistance. I been reading
various posts as well as the help feature in Excel and I am not able
tofind
an answer. I'm a newbie to formula writing in Excel.



Row Column "A" Column"B"
5 DNQ Bix
6 Eligible Brandon
7 DNQ Cheeta
8 Eligible Chris
9 Eligible Gary
10 Eligible Glenn
11 DNQ Greg N
12 DNQ JP
13 Eligible Keith
14 Eligible Mike
15 DNQ Rich
16 DNQ Riz
17 Eligible Ryan
18 Eligible Scott B
19 Eligible Scott S
20 Eligible Seth
21 DNQ Todd


"CARFL97" wrote:

What I'm attempting to do is write a formula within a conditional
format
that
uses an if statement and then performs a max lookup within a column.

For example: =if a5="eligible", =max(f5:f33) and then highlight the
applicable max cell in column f .

Any help would be greatly appreciated. This forum is a great
resource!






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
Change different cell based on conditional statement FoxIII Excel Worksheet Functions 4 December 30th 08 02:00 PM
Conditional format based off of a logical if statement cyndi Excel Discussion (Misc queries) 3 November 6th 07 07:07 PM
IF Statement based on Conditional format Hendrik[_2_] Excel Discussion (Misc queries) 6 March 28th 07 10:14 AM
If statement based on currency format juliejg1 Excel Worksheet Functions 4 September 19th 06 03:40 PM
Conditional formatting based on if statement. kevin Excel Worksheet Functions 2 January 12th 05 03:07 AM


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