pedro-egoli
Well-known Member
- Joined
- Apr 25, 2004
- Messages
- 1,217
- Office Version
- 2016
- Platform
- Windows
Have a spreadsheet with individual columns for 12 months.
Can't seem to get a formula to do the following
. Provide a running total of certain cells each month, only when there is data in 2 cells, otherwise blank
.When there is data in these 2 cells (various columns) I want previous total to be added to current months total
. As i will be dragging formula across the various columns I want future columns to be blank
The formula I am trying is
F3 and F52 are numbers .
E54 is the total of E52 + E53
The above formula in cell F54 gives an error message " your formula is missing a parenthesis..."
Any assistance appreciated.
Pedro
Can't seem to get a formula to do the following
. Provide a running total of certain cells each month, only when there is data in 2 cells, otherwise blank
.When there is data in these 2 cells (various columns) I want previous total to be added to current months total
. As i will be dragging formula across the various columns I want future columns to be blank
The formula I am trying is
Code:
=IF(and(F3>1,F52>1,E54+SUM(F52+F53),"")
F3 and F52 are numbers .
E54 is the total of E52 + E53
The above formula in cell F54 gives an error message " your formula is missing a parenthesis..."
Any assistance appreciated.
Pedro