Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hello I want to know how do I find the cell reference that contains the minimum value between a range of cells. I know I can use the function =min(A1:A100) but this returns the minimum value. I want to know where this minimum is. And, if I know it's A50 how do I use the cell B50, let me explain: I have some dates in B cells and some values in A cells. I want to know when the minimum did occur (this should be a date in B cells) Thanks a lot -- fadsnet ------------------------------------------------------------------------ fadsnet's Profile: http://www.excelforum.com/member.php...o&userid=37254 View this thread: http://www.excelforum.com/showthread...hreadid=569726 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi!
So, you want to find the MIN in col A and return the corresponding value from col B? Try this: =INDEX(B1:B100,MATCH(MIN(A1:A100),A1:A100,0)) Note: if there are duplicate MIN's the formula will match the FIRST instance. Biff "fadsnet" wrote in message ... Hello I want to know how do I find the cell reference that contains the minimum value between a range of cells. I know I can use the function =min(A1:A100) but this returns the minimum value. I want to know where this minimum is. And, if I know it's A50 how do I use the cell B50, let me explain: I have some dates in B cells and some values in A cells. I want to know when the minimum did occur (this should be a date in B cells) Thanks a lot -- fadsnet ------------------------------------------------------------------------ fadsnet's Profile: http://www.excelforum.com/member.php...o&userid=37254 View this thread: http://www.excelforum.com/showthread...hreadid=569726 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Ok this worked.Thanks a lot -- fadsnet ------------------------------------------------------------------------ fadsnet's Profile: http://www.excelforum.com/member.php...o&userid=37254 View this thread: http://www.excelforum.com/showthread...hreadid=569726 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
Biff "fadsnet" wrote in message ... Ok this worked.Thanks a lot -- fadsnet ------------------------------------------------------------------------ fadsnet's Profile: http://www.excelforum.com/member.php...o&userid=37254 View this thread: http://www.excelforum.com/showthread...hreadid=569726 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
fadsnet wrote:
Hello I want to know how do I find the cell reference that contains the minimum value between a range of cells. I know I can use the function =min(A1:A100) but this returns the minimum value. I want to know where this minimum is. And, if I know it's A50 how do I use the cell B50, let me explain: I have some dates in B cells and some values in A cells. I want to know when the minimum did occur (this should be a date in B cells) Thanks a lot Try with this: =ADDRESS(ROW()-1+MATCH(MIN(A9:A24),A9:A24,0),1,4) In this example I have some random numbers in A9:A24 and the formula gives the address of the cell with the minimum value. -- (I'm not sure of names of menus, options and commands, because translating from the Italian version of Excel...) Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Maintaining cell reference after sorting | Excel Discussion (Misc queries) | |||
how do I format a cell reference to move as source changes | Excel Worksheet Functions | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Cell Reference Math | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions |