#1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10
Default Extract

Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the month
of august in sheet 2
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,420
Default Extract

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2



  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10
Default Extract

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2




  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 35,218
Default Extract

Bob's formula worked fine for me.

Are you sure you didn't miss the Aug with 33? Maybe in a hidden/filtered row?

sajith wrote:

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2





--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10
Default Extract

i am getting the result as 33, but the highest number for the month of AUG is
6. the highest number for the month of SEP is 33. i want to get the highest
number for the month of AUG on sheet 2.

"Dave Peterson" wrote:

Bob's formula worked fine for me.

Are you sure you didn't miss the Aug with 33? Maybe in a hidden/filtered row?

sajith wrote:

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2




--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 35,218
Default Extract

Share your formula.

sajith wrote:

i am getting the result as 33, but the highest number for the month of AUG is
6. the highest number for the month of SEP is 33. i want to get the highest
number for the month of AUG on sheet 2.

"Dave Peterson" wrote:

Bob's formula worked fine for me.

Are you sure you didn't miss the Aug with 33? Maybe in a hidden/filtered row?

sajith wrote:

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2




--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10
Default Extract

i was using bobs formula =MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

"Dave Peterson" wrote:

Share your formula.

sajith wrote:

i am getting the result as 33, but the highest number for the month of AUG is
6. the highest number for the month of SEP is 33. i want to get the highest
number for the month of AUG on sheet 2.

"Dave Peterson" wrote:

Bob's formula worked fine for me.

Are you sure you didn't miss the Aug with 33? Maybe in a hidden/filtered row?

sajith wrote:

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2




--

Dave Peterson


--

Dave Peterson

  #8   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 35,218
Default Extract

I would double check the data.

I think you have that value for Aug.

sajith wrote:

i was using bobs formula =MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

"Dave Peterson" wrote:

Share your formula.

sajith wrote:

i am getting the result as 33, but the highest number for the month of AUG is
6. the highest number for the month of SEP is 33. i want to get the highest
number for the month of AUG on sheet 2.

"Dave Peterson" wrote:

Bob's formula worked fine for me.

Are you sure you didn't miss the Aug with 33? Maybe in a hidden/filtered row?

sajith wrote:

i got the result as 33 but its not true, i want the highest number only for
the period of AUG

"Bob Phillips" wrote:

=MAX(IF(Sheet1!A2:A200="AUG",Sheet1!B2:B200))

this is an array formula, so commit with Ctrl-Shift-Enter not just Enter

--
__________________________________
HTH

Bob

"sajith" wrote in message
...
Month Number
AUG 1
AUG 2
AUG 3
AUG 4
AUG 5
AUG 6
SEP 28
SEP 29
SEP 30
SEP 31
SEP 32
SEP 33

these r the data given in Sheet 1 and i want the highest number in the
month
of august in sheet 2




--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
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
Extract 7 and 30 day max West22 Excel Discussion (Misc queries) 2 December 5th 07 12:55 AM
extract name Shamu Excel Discussion (Misc queries) 3 August 13th 07 12:55 PM
How can I extract each Max key value ? diglas1 via OfficeKB.com New Users to Excel 2 May 31st 06 11:06 PM
Extract Unique Values, Then Extract Again to Remove Suffixes Karl Burrows Excel Discussion (Misc queries) 23 June 25th 05 10:37 PM
Last Name, First Name extract Tony Excel Discussion (Misc queries) 2 May 13th 05 01:06 AM


All times are GMT +1. The time now is 12:45 PM.

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"