Sum Larget Values

gsbelbin

Active Member
Joined
Aug 29, 2008
Messages
336
Hi
I have a list of values and I want to sum the largest n of these. Originally I was just summing the largest 3 and used the formula:-​

=SUM(LARGE(A2:A100,{1,2,3}))​

However I'd now like to enter a number in another cell which would then define the number of values to sum. So I need to make the {1,2,3} bit dynamic.​

Can anyone help?​

Cheers​

Gordon​
 
....
ROW(INDIRECT("1:"&C1)) part is doing?
....

INDIRECT returns a range for a text input

So INDIRECT("1:"&C1) ... where C1 houses a number... will return

INDIRECT("1:"&3) => INDIRECT("1:3"), which when wrapped with ROW

ROW(INDIRECT("1:3") => ROW($1:$3)... which returns the array {1;2;3}
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
INDIRECT returns a range for a text input

So INDIRECT("1:"&C1) ... where C1 houses a number... will return

INDIRECT("1:"&3) => INDIRECT("1:3"), which when wrapped with ROW

ROW(INDIRECT("1:3") => ROW($1:$3)... which returns the array {1;2;3}

Thanks, Sandeep. It makes sense now.

Cheers

Gordon
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,746
Members
449,050
Latest member
excelknuckles

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