Large with multiple n's

AT--o

New Member
Joined
Aug 24, 2010
Messages
19
Hi guys, Im trying to show the three largest numbers.
Code:
=Large((A1:C1,F1:H1),(1,2,3))
The following works but a want it the simplest possible
Code:
=Concatenate(Large((A1:C1,F1:H1),1),Large((A1:C1,F1:H1),2),Large((A1:C1,F1:H1),3)
Thanks
 
Try:

=Large((A1:C1,F1:H1),1)&Large((A1:C1,F1:H1),2)&Large((A1:C1,F1:H1),3)

However, you might want to put a delimiter in there:

=Large((A1:C1,F1:H1),1)&", "&Large((A1:C1,F1:H1),2)&", "&Large((A1:C1,F1:H1),3)
 
Upvote 0
Hi, Im not looking for different ways to concatenate I just want to know is if the Large function can have multiples n´s.

Thank you.
 
Upvote 0
Hi

Or alternatively -

Select the cells A1 through C1 using Shift and Enter
Individually select the cells F1 through H1 using Ctrl and Enter

In the name box type AHr

then for your formula

Code:
=LARGE(AHr,1)&LARGE(AHr,2)&LARGE(AHr,3)

hth

Mike

ps No you can't give it multiple n parameters
 
Last edited:
Upvote 0
You can use this formula

=LARGE((A1:C1,F1:H1),{1;2;3})

"array entered" in a vertical array of 3 cells that will display the largest 3, one in each cell
 
Upvote 0
LARGE can have multiple n's, but there is no native function that will catenate an array result. For example,
Code:
      A- B- C- D- E- F-
  1   22 82 83 37 23 90
  2   90 83 82 37

A2:D2 contains the array formula

=LARGE(A1:F1, {1,2,3,4})
 
Upvote 0
You can use the formula I suggested like this

Copy the formula
Copy into a single cell, e.g. J2
Press Enter
Select the range J2:J4
click in the formula bar
Hold down CTRL+SHIFT and press ENTER

shg'd suggestion works the same way except with commas for a horizontal range.....
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top