calculate average daily balance from monthly bank statement

vishwesh barve

New Member
Joined
Jun 24, 2016
Messages
1
sir,

I need to calculate average daily balance from monthly bank statement with single excel formula. I am facing difficulty to design formula due to below issues
1. multiple transaction for single date
2. closing balance of each date is different.
3. some dates are not having transactions example on sunday there is no bank transactions so closing balance of Saturday to be consider as balance for sunday.
please help mi to design formula for this as I need to calculate daily average balance for every moth as a part of reporting to my seniors.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
assuming the dates are in column A

then you need to find the earliest date on the sheet and the latest date on the sheet and calculate the number of days
and then divide that into the total spend

=MAX(A1:A4)-MIN(A1:A4)+1
will give you the number of days

sum the total
sum of total spend / (MAX(A1:A4)-MIN(A1:A4)+1)

Average daily spend
 
Last edited:
Upvote 0

Forum statistics

Threads
1,218,175
Messages
6,140,923
Members
450,320
Latest member
NewExcelUser101

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top