H
Horst
Can someone give me the right formula plase
IF(F14:G14=VALUE,SUM(H13+F14-G14),0)
IF(F14:G14=VALUE,SUM(H13+F14-G14),0)
"Toppers" wrote:
I like to start with a balance in the row above. If I have a debit or
credit
on the next row, I would like to calculate the balance cell on that row to
give me the new total. If there is no entry, I would like the balance cell
on
that row to show 0 or stay blank. This should be like a regular check
register.
David Biddulph said:In which case:
=IF(AND(ISBLANK(F14),ISBLANK(G14)),"",H13+F14-G14)