Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can this be done to return the MIN of F2, G2 or H2 and and "F", "G" or "H" which ever is the MIN?
Where F2=1, G2=2, F2=3. This returns 1 FALSE. =MIN(F2:H2)&" "&IF(ADDRESS(2,6)=MIN(F2:H2),"F",IF(ADDRESS(2,7)=M IN(F2:H2),"G",IF(ADDRESS(2,8)=MIN(F2:H2),"H"))) Thanks. Howard |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Howard,
Am Tue, 29 Jul 2014 00:18:53 -0700 (PDT) schrieb L. Howard: Can this be done to return the MIN of F2, G2 or H2 and and "F", "G" or "H" which ever is the MIN? Where F2=1, G2=2, F2=3. try: =MIN(F2:G2)&" in "&ADDRESS(2,MATCH(MIN(F2:G2),A2:G2,0),4) Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi again,
Am Tue, 29 Jul 2014 09:27:53 +0200 schrieb Claus Busch: =MIN(F2:G2)&" in "&ADDRESS(2,MATCH(MIN(F2:G2),A2:G2,0),4) sorry, typo. Try: =MIN(F2:H2)&" in "&ADDRESS(2,MATCH(MIN(F2:H2),A2:H2,0),4) Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Try: =MIN(F2:H2)&" in "&ADDRESS(2,MATCH(MIN(F2:H2),A2:H2,0),4) Regards Claus B. Never ceases to amaze me, thanks, Claus. Howard |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Howard,
Am Tue, 29 Jul 2014 00:50:56 -0700 (PDT) schrieb L. Howard: Never ceases to amaze me always glad to help. If the minimum can also occur in A2:E2 you will get a wrong cell address. In this case you better do the MATCH into the range for minimum: =MIN(F2:H2)&" in "&ADDRESS(ROW(F2),MATCH(MIN(F2:H2),F2:H2,0)+COLUMN (F2)-1,4) The formula is more versatile. You also can copy down the formula. Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() If the minimum can also occur in A2:E2 you will get a wrong cell address. In this case you better do the MATCH into the range for minimum: =MIN(F2:H2)&" in "&ADDRESS(ROW(F2),MATCH(MIN(F2:H2),F2:H2,0)+COLUMN (F2)-1,4) The formula is more versatile. You also can copy down the formula. Regards Claus B. -- I can't make that error occur with the first formula. With 1 to 8 in A - H both seem to work fine, each returns "6 in F2". I'll go with the latter on your advice anyway. Thanks again. Howard |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Howard,
Am Tue, 29 Jul 2014 02:45:40 -0700 (PDT) schrieb L. Howard: I can't make that error occur with the first formula. perhaps I did not explain correctly. Please look he https://onedrive.live.com/?cid=9378A...121822A3%21326 for "Min" Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Tuesday, July 29, 2014 3:42:58 AM UTC-7, Claus Busch wrote:
Hi Howard, Am Tue, 29 Jul 2014 02:45:40 -0700 (PDT) schrieb L. Howard: I can't make that error occur with the first formula. perhaps I did not explain correctly. Please look he https://onedrive.live.com/?cid=9378A...121822A3%21326 for "Min" Regards Claus B. -- I understand now. The sheet explained it very well. Thanks. Howard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
return the Cell address of a value | Excel Worksheet Functions | |||
Return a cell address | Excel Worksheet Functions | |||
return a cell address? | Excel Programming | |||
How do I use a function to return the address of a cell? | Excel Worksheet Functions | |||
Return cell address value | Excel Programming |