Late Fees Applied

Wils60

New Member
Joined
Jan 6, 2022
Messages
6
Office Version
  1. 2010
Platform
  1. Windows
I have been researching this for several months with absolutely no success.

I created a spreadsheet to receive rental payments with a $50 late fee after 5 days with a balance owed column. I got it all worked out except for one very frustrating problem:

When I enter their actual payment without late fee after the 5th, excel sees it as paid and removes the late fee. If I enter the payment after the 5th with late fee included, it again sees it as paid and credits them $50 in the balance owed column.
How can I keep the late in intact even after a payment is posted after the 5th?

Example:

A B C D E F G H I J K
Unit #1st resident2nd residentCurrent Monthly RateParking Space FeeMonthly Total OwedDays LateLate Fee ($50)Paid AmountK=Checks R=Cash M=Money Order C= CashiersBalanced Owed This Month
12Joe BlowJoes Wife519.00-569.00
7​
-519-
14John DoeMrs. Doe470.0015.00535.00
7​
-535+50
15Janet Jackson406.00-456.00
7​
50(456.00)

Column G: I used =SUM(TODAY()-$M$1) M1 not shown here, it contains due date, to determine how many days late
Column H: I used =IF(AND(G2>5,I2<D2+E2),50,0) To me this says if they are more than 5 days late (G2) and have not paid (I2) then add $50, if they have paid amount owed, then return 0
Column K: I used =IF(AND(G2>5,I2<(D2+E2+50)),I2-(D2+E2+50),I2-(D2+E2)) I had to use part of the Column H formula to prevent a circular reference. I've also tried various incarnations of this formula with no success

AS you can see from my examples, they are all 7 days late generating a $50 late fee. Unit #12 I entered the amount owed without late fee and it removed the late fee and gave them a $0 balance owed
Unit #14 I entered the amount owed with the late fee, it removed the late fee and credited them with $50 on Balance owed
Unit #15 correctly shows total amount owed when late, adding regular monthly payments plus late fee.

Please help - how can I tell excel that if they are late, leave the late fee in even after they pay past the due date?
 
MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Wils60, here's what I'm thinking...added two date columns. First for when the payment is due and the 2nd for when the first payment is made.
Book1.xlsm
ABCDEFGHIJKLM
1Unit #1st resident2nd residentCurrent Monthly RateParking Space FeeMonthly Total OwedCharge DateDays LateLate Fee ($50)Paid AmountPayment DateK=Checks R=Cash M=Money Order C= CashiersBalanced Owed This Month
212Joe BlowJoes Wife519.00$ -$ 569.001-Jan-2250$ 50.00$ 519.008-Jan-22$ 50.00
314John DoeMrs. Doe470.00$ 15.00$ 485.001-Jan-220$ -$ 535.002-Jan-22$ (50.00)
Four
Cell Formulas
RangeFormula
H2:H3H2=+IF(K2-G2>5,50,0)
I2:I3I2=+IF(H2>5,50,0)
F2:F3F2=+D2+E2+I2
M2:M3M2=+F2-J2
 
Upvote 0
Just for clarity...the date in the Payment Date field will only be the first payment they make (in the case where they make partial payments). This will ensure that the late charge is indicated accordingly.
 
Upvote 0
Thank you again Candyman8019. I will give that a try this morning - I got called away yesterday and couldn't follow up. I did try adding the XL2BB but could not find or add it anywhere. So I was starting to feel kind of inept, so it was a good thing I had work distractions that pulled me away. I've created many spreadsheets over the years but have never hit a brick wall like this one.

I actually did have a 2nd date column but it was for the month end not the paid date. Sounds like a solution.
I'll let you know. Thank you again
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,935
Members
449,094
Latest member
teemeren

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