Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a formula that sums the total accrss a series of cells and then adds
the total of the cell above it. =IF(COUNTA(A7:T8),SUM(A7:T8)+X4,0) What I am trying to do is have the same formula but have it not add cells C7:D8 and S7:T8 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Brute force way, until something more sophisticated comes along.........
=IF(COUNTA(A7:T8),SUM(A7:T8)+X4,0)-SUM(C7:D8)-SUM(S7:T8) Vaya con Dios, Chuck, CABGx3 "bbc1" wrote in message ... I have a formula that sums the total accrss a series of cells and then adds the total of the cell above it. =IF(COUNTA(A7:T8),SUM(A7:T8)+X4,0) What I am trying to do is have the same formula but have it not add cells C7:D8 and S7:T8 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(COUNTA(A7:T8),SUM(A7:B8,E7:R8)+X4,0)
or =IF(COUNTA(A7:B8,E7:R8),SUM(A7:B8,E7:R8)+X4,0) depending on what you want. -- David Biddulph "bbc1" wrote in message ... I have a formula that sums the total accrss a series of cells and then adds the total of the cell above it. =IF(COUNTA(A7:T8),SUM(A7:T8)+X4,0) What I am trying to do is have the same formula but have it not add cells C7:D8 and S7:T8 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reusing formula | Excel Discussion (Misc queries) | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |