Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello..
I have one lists of number in A1:A7 and a list of words in B1:B7. I need to find the highest, second highest and third highest value in these lists and display the value and the word next to it in cell C1,C2, D1,D2 and E1,E2 respectively. However, there are same values for highest, second highest and third highest in these list. If the value is the same, can I have it separated? For example: A1 B1 100 Car 100 Bus Assuming both 100 is the highest. I want both Car and Bus to be shown in cell C1. Possible ?Or any other solutions? Please kindly advise. Thank you. help me |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
HELP ME! THANKS
-- help me "ernie" wrote: Hello.. I have one lists of number in A1:A7 and a list of words in B1:B7. I need to find the highest, second highest and third highest value in these lists and display the value and the word next to it in cell C1,C2, D1,D2 and E1,E2 respectively. However, there are same values for highest, second highest and third highest in these list. If the value is the same, can I have it separated? For example: A1 B1 100 Car 100 Bus Assuming both 100 is the highest. I want both Car and Bus to be shown in cell C1. Possible ?Or any other solutions? Please kindly advise. Thank you. help me |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mar 15, 8:56*pm, ernie wrote:
HELP ME! THANKS -- help me "ernie" wrote: Hello.. I have one lists of number in A1:A7 and a list of words in B1:B7. I need to find the highest, second highest and third highest value in these lists and display the value and the word next to it in cell C1,C2, D1,D2 and E1,E2 respectively. However, there are same values for highest, second highest and third highest in these list. If the value is the same, can I have it separated? * For example: A1 * * B1 * * * * * * * * * *100 * *Car * * * * * * * * * *100 * *Bus Assuming both 100 is the highest. I want both Car and Bus to be shown in cell C1. Possible ?Or any other solutions? Please kindly advise. Thank you. help me- Hide quoted text - - Show quoted text - Ernie, be patient This list always comes up with an answer, unless your request doesn't make sense or there is not a logical solution! Wait, your "help me" plea will probably be answered very soon! Pete |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() The following formula will return the value in column B corresponding to the highest value in A. In this example, the data is assumed to be in A2:B8. =INDEX(A2:B8,MATCH(LARGE(A2:A8,1),A2:A8,0),2) For the second highest, use =INDEX(A2:B8,MATCH(LARGE(A2:A8,2),A2:A8,0),2) For the third highest, use =INDEX(A2:B8,MATCH(LARGE(A2:A8,3),A2:A8,0),2) Or, you could use a single array formula: =INDEX(A2:B8,MATCH(LARGE(A2:A8,{1,2,3}),A2:A8,0),2 ) Select the three cells in the same row in which you want to have the results, type the following formula and press CTRL SHIFT ENTER Note that the 1,2,3 is enclosed in curly braces, not parentheses. This is an array formula, so you MUST press CTRL SHIFT ENTER rather than just ENTER when you first enter the formula and whenever you edit it later. If you do this properly, Excel will display the formula in the formula bar enclosed in curly braces { }. You don't type in the braces; Excel includes them automatically. The formula will not work correctly if you do not use CTRL SHIFT ENTER. See www.cpearson.com/Excel/ArrayFormulas.aspx for much more information about array formulas. If you want the results to be in three cells on the same row, use the formula above. If you want the results in cells in the same column spanning multiple rows, either TRANSPOSE the values: =TRANSPOSE(INDEX(A2:B8,MATCH(LARGE(A2:A8,{1,2,3}), A2:A8,0),2)) or change the commas that separate the 1,2,3 within the curly braces to semicolons: =INDEX(A2:B8,MATCH(LARGE(A2:A8,{1;2;3}),A2:A8,0),2 ) Cordially, Chip Pearson Microsoft Most Valuable Professional, Excel, 1998 - 2010 Pearson Software Consulting, LLC www.cpearson.com On Mon, 15 Mar 2010 00:42:01 -0700, ernie wrote: Hello.. I have one lists of number in A1:A7 and a list of words in B1:B7. I need to find the highest, second highest and third highest value in these lists and display the value and the word next to it in cell C1,C2, D1,D2 and E1,E2 respectively. However, there are same values for highest, second highest and third highest in these list. If the value is the same, can I have it separated? For example: A1 B1 100 Car 100 Bus Assuming both 100 is the highest. I want both Car and Bus to be shown in cell C1. Possible ?Or any other solutions? Please kindly advise. Thank you. help me |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Highest Value | Excel Discussion (Misc queries) | |||
Next highest Value | Excel Worksheet Functions | |||
Highest, Second Highest , Third Highest and so on | Excel Discussion (Misc queries) | |||
Display the Highest, Second Highest, Third Highest and so on... | Excel Discussion (Misc queries) | |||
2 rows, highest No in row 1, then highest number in row 2 relating to that column, possible duplicates | Excel Worksheet Functions |