Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Finding Max or Min Value

I just cant find a way to bring bring the max value over from sheet 1 to
sheet 2.

Sheet 1
A-----B------------C (header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2
W65--------?? (index match would result in 00-Jan-00 & vlookup-true, a
weird number) & I am unable to operate the Dmax formula.

The answer is: 22-Nov-06 (manually)

U56---------??

The answer is: 22-Nov-06 (manually)


Help is needed!!!!!


Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,726
Default Finding Max or Min Value

=MAX(INDEX((Sheet1!B1:B12=A1)*Sheet1!C1:C12,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

" wrote in
message ...
I just cant find a way to bring bring the max value over from sheet 1 to
sheet 2.

Sheet 1
A-----B------------C (header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2
W65--------?? (index match would result in 00-Jan-00 & vlookup-true, a
weird number) & I am unable to operate the Dmax formula.

The answer is: 22-Nov-06 (manually)

U56---------??

The answer is: 22-Nov-06 (manually)


Help is needed!!!!!


Thanks.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Finding Max or Min Value

I've typed the formula as follow:
=max(index(sheet1A:A=Sheet2A1)*(sheet1!B:B,0))

What went wrong?


Sheet 1
+------A-------------B-----(header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2 (additional Information)
Cell A1 & A2 are index(match) formula.

W65--(A1)----?? (index match would result in 00-Jan-00 & vlookup-true, a
The answer is: 22-Nov-06 (manually)

U56--(A2)----??
The answer is: 22-Nov-06 (manually)
------------------------------------------------------------------------------


"Bob Phillips" wrote:

=MAX(INDEX((Sheet1!B1:B12=A1)*Sheet1!C1:C12,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

" wrote in
message ...
I just cant find a way to bring bring the max value over from sheet 1 to
sheet 2.

Sheet 1
A-----B------------C (header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2
W65--------?? (index match would result in 00-Jan-00 & vlookup-true, a
weird number) & I am unable to operate the Dmax formula.

The answer is: 22-Nov-06 (manually)

U56---------??

The answer is: 22-Nov-06 (manually)


Help is needed!!!!!


Thanks.




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default Finding Max or Min Value

=max(index(sheet1A:A=Sheet2A1)*(sheet1!B:B,0))

Try it like this: (you can't use entire columns - A:A, B:B)

=MAX(INDEX((Sheet1!A1:A100=Sheet2!A1)*Sheet1!B1:B1 00,0))

Biff

" wrote in
message ...
I've typed the formula as follow:
=max(index(sheet1A:A=Sheet2A1)*(sheet1!B:B,0))

What went wrong?


Sheet 1
+------A-------------B-----(header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2 (additional Information)
Cell A1 & A2 are index(match) formula.

W65--(A1)----?? (index match would result in 00-Jan-00 & vlookup-true, a
The answer is: 22-Nov-06 (manually)

U56--(A2)----??
The answer is: 22-Nov-06 (manually)
------------------------------------------------------------------------------


"Bob Phillips" wrote:

=MAX(INDEX((Sheet1!B1:B12=A1)*Sheet1!C1:C12,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

" wrote
in
message ...
I just cant find a way to bring bring the max value over from sheet 1
to
sheet 2.

Sheet 1
A-----B------------C (header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2
W65--------?? (index match would result in 00-Jan-00 & vlookup-true, a
weird number) & I am unable to operate the Dmax formula.

The answer is: 22-Nov-06 (manually)

U56---------??

The answer is: 22-Nov-06 (manually)


Help is needed!!!!!


Thanks.






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Finding Max or Min Value

Thank you ALL!!!!, I will check it out on Monday. Have a superb weekend.

"Biff" wrote:

=max(index(sheet1A:A=Sheet2A1)*(sheet1!B:B,0))


Try it like this: (you can't use entire columns - A:A, B:B)

=MAX(INDEX((Sheet1!A1:A100=Sheet2!A1)*Sheet1!B1:B1 00,0))

Biff

" wrote in
message ...
I've typed the formula as follow:
=max(index(sheet1A:A=Sheet2A1)*(sheet1!B:B,0))

What went wrong?


Sheet 1
+------A-------------B-----(header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2 (additional Information)
Cell A1 & A2 are index(match) formula.

W65--(A1)----?? (index match would result in 00-Jan-00 & vlookup-true, a
The answer is: 22-Nov-06 (manually)

U56--(A2)----??
The answer is: 22-Nov-06 (manually)
------------------------------------------------------------------------------


"Bob Phillips" wrote:

=MAX(INDEX((Sheet1!B1:B12=A1)*Sheet1!C1:C12,0))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

" wrote
in
message ...
I just cant find a way to bring bring the max value over from sheet 1
to
sheet 2.

Sheet 1
A-----B------------C (header)
1-----W65--------00-Jan-00
2-----W65--------00-Jan-00
3-----W65--------21-Nov-06
4-----W65--------22-Nov-06
5-----W65--------24-Jul-06
6-----W65--------24-Jul-06
7-----U54--------20-Sep-06
8-----U56--------00-Jan-00
9-----U56--------00-Jan-00
10----U56--------00-Jan-00
11----U56--------00-Jan-00
12----U56--------22-Nov-06

Sheet 2
W65--------?? (index match would result in 00-Jan-00 & vlookup-true, a
weird number) & I am unable to operate the Dmax formula.

The answer is: 22-Nov-06 (manually)

U56---------??

The answer is: 22-Nov-06 (manually)


Help is needed!!!!!


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
Finding a link source. Richard Buttrey Excel Worksheet Functions 5 October 12th 06 11:10 PM
Finding Asymptotes from a set of data in Excel WAYNEL Excel Worksheet Functions 1 January 7th 06 01:28 AM
Finding Asymptotes from a set of data in Excel WAYNEL Excel Discussion (Misc queries) 0 January 6th 06 10:48 PM
Finding Duplicate Names from Different Lists... PokerZan Excel Discussion (Misc queries) 1 July 8th 05 09:58 AM
finding the second largest number in a list bobf Excel Discussion (Misc queries) 1 February 16th 05 01:19 PM


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