Property Management Late Fees

fedcco

New Member
Joined
Aug 14, 2012
Messages
22


Month

Tenant Name
Rental Amount
Lease End Date
Method of Pmt.
Chk. No.
Due Date
Date Paid
Mgmt. Fee
Repairs Amt.
Late Fee
Bal. Due Owner
Jan.
Feb
Mar

<tbody>
</tbody>

<tbody>
</tbody>
I need a formula that will calculate late fees if the payment is made past the 3rd. day of the month.

Ex. If the payor pays on the 4th. of the month, then he must pay a $$$ amount and if he pays on the 5th., then he must pay an additional amount. (Paid on the 7th. of the month, $10+5+5+5)

Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
OK, so is the calculation something like -
If he pays on the 4th, he must pay $10
Then every day after the 4th, another $5 ?
Right up to the 31st ?
 
Upvote 0
Is it POSSIBLE that they could pay early, and if YES, how do you want to handle that ?

So for example, payment due on 3rd February but they actually pay 31st January ?
Is that possible ?
 
Upvote 0
If they pay on the due date or earlier, they just pay the amount due or the $10.

Thanks.
 
Upvote 0
Sorry for the confusion, the amount due is lets say $40. This is just an example of what I need to do. If the tenant pays the amount due ($40) prior to or up to the 3rd., they just pay the amount due ($40). If they pay on the next day or on the 4th. they pay $40+$10 for a total of $50. If they pay on the 7th., they pay ($40+$10 for the 4th.)+($5 for the 5th.)+($5 for the 6th.)+($5 for the 7th.) Totaling $65
 
Upvote 0

Excel 2010
ABCDEFGHIJKL
1MonthTenant NameRental AmountLease End DateMethod of Pmt.Chk. No.Due DateDate PaidMgmt. FeeRepairs Amt.Late FeeBal. Due Owner
2Jan.401-Jan-191-Jan-190
3Feb401-Feb-1910-Feb-193575
3a
Cell Formulas
RangeFormula
K2=((H2-G2)>3)*10+((H2-G2)>4)*(H2-G2-4)*5
K3=((H3-G3)>3)*10+((H3-G3)>4)*(H3-G3-4)*5
L3=C3+K3
 
Upvote 0
Unfortunately, the formula is returning a "0" for the calculation. I substituted a + sign for the * before the 10 which gave a return of 10 but still didn't add the additional $5 per day late.
 
Upvote 0
The formula works but the following is more concise.
Ensure that the columns shown are the same as your spreadsheet.


Excel 2010
CDEFGHIJKL
1Rental AmountLease End DateMethod of Pmt.Chk. No.Due DateDate PaidMgmt. FeeRepairs Amt.Late FeeBal. Due Owner
2401-Jan-194-Jan-191050
3401-Feb-1910-Feb-194080
4401-Feb-197-Feb-192565
3a
Cell Formulas
RangeFormula
K2=((H2-G2)>=3)*(H2-G2-1)*5
K3=((H3-G3)>=3)*(H3-G3-1)*5
K4=((H4-G4)>=3)*(H4-G4-1)*5
L2=C2+K2
L3=C3+K3
L4=C4+K4
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,256
Members
448,558
Latest member
aivin

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