I have a Master sheet that keeps a running total based off of a separate Transaction sheet.
The running total on the master is referencing a cell in the transaction sheet that is currently a basic SUM of the 2 cells next to it. I need a function that will keep this SUM function intact BUT if the cells in the SUM are blank return the most recent total from previous transactions.
Example: Transaction for Box A - entry showed 1 available(available column), 2 were added(add/remove column), total is 3(total column).
Second transaction for Box A - entry showed nothing in the available and added boxes but I want this to return a total of 3 still.
Third transaction for Box A - entry showed 3 available, 2 added, total now 5
In this instance I would want the Master sheet to have shown a running total for Box A as 3 after the first transaction, still 3 after the second transaction, and 5 after the third.
As it stands now the Master sheet will show 3, 0, and then 5 because the function returning the totals is just based off of a basic SUM function.
TRANSACTION SHEET TOTAL FORMULA =SUM([Medication Add/Remove]@row:[Medication Available]@row)