Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to add 3 columns and have the sum automatically go into one
column if it is negative and another if it is positive? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
lets say you are summing columns A, B & C put this in D1
=IF(SUM(A1:C1)0,SUM(A1:C1),"") Only positive values will display Put this in e1 =IF(SUM(A1:C1)<0,SUM(A1:C1),"") and it will only display negative values Drag down as required Mike "woodac" wrote: Is there a way to add 3 columns and have the sum automatically go into one column if it is negative and another if it is positive? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(SUM(A:C)0,"",SUM(A:C)) in D1
=IF(SUM(A:C)<0,"",SUM(A:C)) in E1 Gord Dibben MS Excel MVP On Wed, 9 Apr 2008 14:16:01 -0700, woodac wrote: Is there a way to add 3 columns and have the sum automatically go into one column if it is negative and another if it is positive? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I copy a value from a cell and paste it into another cell while adding it to the previous value in that cell | Excel Worksheet Functions | |||
How can I make a blank cell in a formula cell with a range of cell | Excel Discussion (Misc queries) | |||
cell data not validated if navigating cell to cell with mouse | Excel Worksheet Functions | |||
How to create/run "cell A equals Cell B put Cell C info in Cell D | Excel Discussion (Misc queries) | |||
Cell Formula reference to cell Based On third Cell Content | Excel Discussion (Misc queries) |