Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello!
I have a range of dates in a single row. Every other cell in the row is a date, with the remaining alternating cells in the row being revision #'s for that date (formatted as a 1 or 2 digit numeric and an alpha. e.g. 8C or 13A). Starting with revision #, then date, revision #, date, etc. The first couple of columns in the worksheet are for the latest revision and it's date for the record in that row, with many entries down the length of the row. I discovered how to return the latest date with =MAX(B10:Y10). Now what I need to do is this; where that date occurs in the row, I need to also grab the revision number which is always 1 column to the left of that date. I haven't found any way to do this. Help!? THANKS SO MUCH! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try:
=INDEX(B10:Y10,0,MATCH(MAX(B10:Y10),B10:Y10,0)-1) "wellan" wrote: Hello! I have a range of dates in a single row. Every other cell in the row is a date, with the remaining alternating cells in the row being revision #'s for that date (formatted as a 1 or 2 digit numeric and an alpha. e.g. 8C or 13A). Starting with revision #, then date, revision #, date, etc. The first couple of columns in the worksheet are for the latest revision and it's date for the record in that row, with many entries down the length of the row. I discovered how to return the latest date with =MAX(B10:Y10). Now what I need to do is this; where that date occurs in the row, I need to also grab the revision number which is always 1 column to the left of that date. I haven't found any way to do this. Help!? THANKS SO MUCH! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Excellent. Exactly what I needed. Much appreciated!!
"Toppers" wrote: try: =INDEX(B10:Y10,0,MATCH(MAX(B10:Y10),B10:Y10,0)-1) "wellan" wrote: Hello! I have a range of dates in a single row. Every other cell in the row is a date, with the remaining alternating cells in the row being revision #'s for that date (formatted as a 1 or 2 digit numeric and an alpha. e.g. 8C or 13A). Starting with revision #, then date, revision #, date, etc. The first couple of columns in the worksheet are for the latest revision and it's date for the record in that row, with many entries down the length of the row. I discovered how to return the latest date with =MAX(B10:Y10). Now what I need to do is this; where that date occurs in the row, I need to also grab the revision number which is always 1 column to the left of that date. I haven't found any way to do this. Help!? THANKS SO MUCH! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
match will tell you the relative posigion of the maximum data.
Offset will get the data from that cell =OFFSET(B10,0,MATCH(MAX(B10:X10),B10:X10,0),1,1) "wellan" wrote: Hello! I have a range of dates in a single row. Every other cell in the row is a date, with the remaining alternating cells in the row being revision #'s for that date (formatted as a 1 or 2 digit numeric and an alpha. e.g. 8C or 13A). Starting with revision #, then date, revision #, date, etc. The first couple of columns in the worksheet are for the latest revision and it's date for the record in that row, with many entries down the length of the row. I discovered how to return the latest date with =MAX(B10:Y10). Now what I need to do is this; where that date occurs in the row, I need to also grab the revision number which is always 1 column to the left of that date. I haven't found any way to do this. Help!? THANKS SO MUCH! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup Value in Range/Array and Return Column Header Value | Excel Discussion (Misc queries) | |||
Lookup Value in Range/Array and Return Column Header Value | Excel Worksheet Functions | |||
Return the latest date from a list of dates | Excel Worksheet Functions | |||
Function to return the latest non-zero value in a range of cells . | Excel Worksheet Functions | |||
Lookup the latest date in a range so it appears as my result | Excel Discussion (Misc queries) |