Calculate the exact rent owed for a partial month.
31 Days (Jan, Mar, May, Jul, Aug, Oct, Dec)
30 Days (Apr, Jun, Sep, Nov)
28 Days (February – Common Year)
29 Days (February – Leap Year)
Include both the start and end dates in your count.
The prorated rent amount is:
Understanding Pro Rata Rent
Pro rata rent, often called prorated rent, refers to the amount of money a landlord charges a tenant for a partial month of occupancy. This situation usually occurs when a tenant moves in after the first day of the month or moves out before the last day of the month.
Instead of paying for a full 30 or 31 days, the tenant only pays for the specific days they actually lived in the unit. This ensures a fair financial arrangement for both parties during transition periods.
How to Calculate Prorated Rent Manually
Calculating pro rata rent is a straightforward mathematical process. Follow these three steps:
Step 1: Determine the daily rate. Divide the total monthly rent by the total number of days in that specific month.
Step 2: Count the occupancy days. Count every day the tenant will have possession of the property, including the day they move in.
Step 3: Multiply. Multiply the daily rate by the number of days occupied.
Real-World Example:
Imagine your monthly rent is $2,100 and you are moving in on June 15th. Since June has 30 days, you will occupy the unit for 16 days (from the 15th to the 30th inclusive).
Daily Rate: $2,100 / 30 = $70 per day
Prorated Rent: $70 × 16 days = $1,120
In this case, you would owe $1,120 for your first month instead of the full $2,100.
The "Standard Month" Method vs. Actual Days
While most landlords calculate pro rata rent based on the actual number of days in the current month (28, 29, 30, or 31), some lease agreements use a "Standard Month" approach. This assumes every month has 30 days regardless of the calendar. It is important to check your lease agreement to see which method your landlord requires.
When is Pro Rata Rent Usually Due?
Typically, prorated rent is paid on the move-in date along with the security deposit. However, some landlords require the first full month's rent upfront and then apply the prorated discount to the second month of the lease. Always clarify this with your property manager before signing the lease.
Common Pro Rata Scenarios
You might need this calculator in the following situations:
Mid-Month Move-In: Moving into a new apartment on a date other than the 1st.
Breaking a Lease: If you and your landlord agree to a move-out date mid-month.
Lease Renewals: If a lease term ends on a specific day mid-month before transitioning to month-to-month.
Adding Roommates: When a new tenant joins a lease halfway through a billing cycle.
function calculateProRataRent() {
var rent = document.getElementById("monthlyRent").value;
var monthDays = document.getElementById("daysInMonth").value;
var occupiedDays = document.getElementById("daysOccupied").value;
var resultBox = document.getElementById("pr-result-display");
var resultVal = document.getElementById("pr-result-val");
var breakdown = document.getElementById("pr-breakdown");
// Validation
if (rent === "" || rent <= 0) {
alert("Please enter a valid monthly rent amount.");
return;
}
if (occupiedDays === "" || occupiedDays mDaysNum) {
alert("Occupied days cannot exceed the total days in the month.");
return;
}
// Calculation Logic
var dailyRate = rentNum / mDaysNum;
var proRataTotal = dailyRate * oDaysNum;
// Display Results
resultVal.innerHTML = "$" + proRataTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2});
breakdown.innerHTML = "Calculation based on a daily rate of $" + dailyRate.toFixed(2) + " per day.";
resultBox.style.display = "block";
// Smooth scroll to result
resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}