Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to get sum of two maximum figures from five and four columns. Please
give me the formula in Excel Sheet. Thanks. Arshad |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 "Arshad" wrote: I need to get sum of two maximum figures from five and four columns. Please give me the formula in Excel Sheet. Thanks. Arshad |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Fri, 18 May 2007 01:47:07 -0700, Mike H
wrote: Try this =SUM(LARGE(A1:A60,ROW(INDIRECT("1:2"))))+SUM(LARG E(B1:B60,ROW(INDIRECT("1:2")))) This will do columns A and B, add more columns as necessary. Mike "Arshad" wrote: I need to get sum of two maximum figures from five and four columns. Please give me the formula in Excel Sheet. Thanks. Arshad Perhaps more efficient (or at least, shorter): =SUM(LARGE(A1:A60,{1,2}),LARGE(B1:B60,{1,2})) --ron |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 On May 18, 7:00 am, Arshad wrote: I need to get sum of two maximum figures from five and four columns. Please give me the formula in Excel Sheet. Thanks. Arshad |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What combo of figures = X? | Excel Discussion (Misc queries) | |||
What combo of figures = X? | Excel Discussion (Misc queries) | |||
add figures to existing figures in excel | Excel Worksheet Functions | |||
how do i get a column to only add up the figures in a certain col | Excel Discussion (Misc queries) | |||
Changing positive figures to minus figures | Excel Worksheet Functions |