How to sum of two max figures out of five and four figures

G

Guest

I need to get sum of two maximum figures from five and four columns. Please
give me the formula in Excel Sheet.

Thanks.


Arshad
 
G

Guest

Try this

=SUM(LARGE(A1:A60,ROW(INDIRECT("1:2"))))+SUM(LARGE(B1:B60,ROW(INDIRECT("1:2"))))

This will do columns A and B, add more columns as necessary.

Mike
 
R

Ron Rosenfeld

Try this

=SUM(LARGE(A1:A60,ROW(INDIRECT("1:2"))))+SUM(LARGE(B1:B60,ROW(INDIRECT("1:2"))))

This will do columns A and B, add more columns as necessary.

Mike

Perhaps more efficient (or at least, shorter):

=SUM(LARGE(A1:A60,{1,2}),LARGE(B1:B60,{1,2}))


--ron
 
P

Pete_UK

You already have two replies, but I read your request differently -
you want to add the maximum from 5 columns (assume A:E) and the
maximum from four other columns (assume G:J). If so, try this:

=MAX(A1:E1000)+MAX(G1:J1000)

Adjust the ranges to suit.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top