Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi,
I need to be able to control the cells that are summed by a number in another cell. My current sum statement is =SUM (L102,T102,X102,AD102,AJ102). I need to use the value is cell A1 to indicate how many of the summed cells to included. For instance if A1=1 then cell L102 is included in the sum. If A1=2 then L102 and T102 would be included in the sum. Any help would be greatly appreciated. |
#2
![]() |
|||
|
|||
![]()
Hi
Maybe using a IF function could be one option: =IF(A1=1,SUM(L102),IF(A1=2,SUM(L102,T102),IF(A1=3, SUM(L102,T102,X102),IF(A1=4,SUM(L102,T102,X102,AD1 02),IF(A1=5,SUM(L102,T102,X102,AD102,AJ102)))))) Quote:
|
#3
![]() |
|||
|
|||
![]()
Thank You... This will work for me Kevin...
|
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
"Jim Schnur" wrote:
I need to be able to control the cells that are summed by a number in another cell. My current sum statement is =SUM (L102,T102,X102,AD102,AJ102). I need to use the value is cell A1 to indicate how many of the summed cells to included. For instance if A1=1 then cell L102 is included in the sum. If A1=2 then L102 and T102 would be included in the sum. One way.... Create a table in a range, for example: X1: =L102 X2: =T102 X3: =X102 X4: =AD102 X5: =AJ102 Then the SUM formula can be: =SUM(X1:INDEX(X1:X5,A1)) |
#5
![]() |
|||
|
|||
![]() Quote:
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Avoiding cells being included in a chart | Excel Programming | |||
command button controlling a range of dates | Excel Programming | |||
Cells not included in formulas | Excel Discussion (Misc queries) | |||
Range of variables with the 'floor' command included | Excel Worksheet Functions | |||
Controlling size of command buttons | Excel Discussion (Misc queries) |