How to Use the PDURATION Function in Excel
In this tutorial, we will explore the PDURATION function, a commonly used financial tool in Microsoft Excel and Google Sheets. The PDURATION function calculates the time required to reach a specified future value given constant periodic payments and a fixed interest rate.
Syntax
The syntax of the PDURATION function is consistent across both Excel and Google Sheets:
=PDURATION(rate, periodic_payment, present_value, future_value)
rate
: The interest rate per period.periodic_payment
: The payment amount made each period. This amount does not change throughout the duration of the investment.present_value
: The current or initial value of the annuity.future_value
: The target value you want the investment to reach.
Examples
Let’s examine several examples to better understand how to utilize the PDURATION function in both Excel and Google Sheets.
Example 1
Calculate the duration needed to reach a future value of $5,000, assuming an annual interest rate of 6%, with monthly payments of $100, and an initial value of $0.
rate | periodic_payment | present_value | future_value | Duration (months) |
---|---|---|---|---|
6% | $100 | $0 | $5,000 | =PDURATION(6%/12, -100, 0, 5000) |
In this scenario, the formula =PDURATION(6%/12, -100, 0, 5000)
should be entered, yielding approximately 51.99 months.
Example 2
Calculate the duration needed to achieve a future value of $50,000, with an annual interest rate of 8%, making quarterly payments of $1,500, starting with a present value of $10,000.
rate | periodic_payment | present_value | future_value | Duration (quarters) |
---|---|---|---|---|
8% | $1,500 | $10,000 | $50,000 | =PDURATION(8%/4, -1500, 10000, 50000) |
For this example, inputting the formula =PDURATION(8%/4, -1500, 10000, 50000)
results in approximately 15.3 quarters.
These examples demonstrate how to use the PDURATION function in Excel and Google Sheets to calculate the time needed to reach a specific future value, based on given financial parameters.
More information: https://support.microsoft.com/en-us/office/pduration-function-44f33460-5be5-4c90-b857-22308892adaf