Forum Discussion
Creating a running balance sheet
- Jun 09, 2023
To create a running balance sheet where the balance amount remains empty when no amounts have been added, you can use an IF statement to check if there are income or expenditure amounts before calculating the balance.
Here is an example formula that you can use:
=IF(OR(ISNUMBER(B1),ISNUMBER(A1)),C1+(B1-A1),"")
This formula checks if either the cell B1 (income) or A1 (expenditure) contains a number. If either cell has a number, it calculates the balance by subtracting the expenditure from the income and adds it to the previous balance in cell C1. If neither cell has a number, it returns an empty string, which will keep the balance cell empty.
You can copy this formula to other cells in the balance sheet column to calculate the running balance for subsequent rows.
Note: Make sure to adjust the cell references (B1, A1, C1) based on your specific worksheet layout.
To create a running balance sheet where the balance amount remains empty when no amounts have been added, you can use an IF statement to check if there are income or expenditure amounts before calculating the balance.
Here is an example formula that you can use:
=IF(OR(ISNUMBER(B1),ISNUMBER(A1)),C1+(B1-A1),"")
This formula checks if either the cell B1 (income) or A1 (expenditure) contains a number. If either cell has a number, it calculates the balance by subtracting the expenditure from the income and adds it to the previous balance in cell C1. If neither cell has a number, it returns an empty string, which will keep the balance cell empty.
You can copy this formula to other cells in the balance sheet column to calculate the running balance for subsequent rows.
Note: Make sure to adjust the cell references (B1, A1, C1) based on your specific worksheet layout.
- Graham_Barclay_BarxJun 09, 2023Copper ContributorThanks for your help. Problem solved.