Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can someone tell this NON-Excel folk how to create a formula to do this?
Much appreciated! -- CLG |
#2
![]() |
|||
|
|||
![]()
To calculate interest between two date ranges in Excel:
1. Calculate the number of days between the two dates by subtracting the start date from the end date and adding 1. 2. Use the formula: Code:
= (P * r * t) / 365 - P is the principal amount - r is the annual interest rate - t is the number of days between the two dates 3. Simplify the formula by using Excel's built-in functions. You can use the ROUND function to round the result to two decimal places. 4. Press Enter to calculate the result. For example, let's say you have a principal amount of $10,000, an annual interest rate of 5%, and you want to calculate the interest between January 1, 2021 and March 31, 2021. Using the above steps, the final formula would look like this:
That's it! I hope this helps you calculate interest between two date ranges in Excel.
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The best way is to describe your problem in non-Excel terms. Then we can
translate it into Excel. Without a decent description, we can only guess at what you need. In non-Excel terms, my guess is you want to: 1. Calculate the number of days in the period. 2. Divide by 365 to get what portion of a year you have. 3. Multiply by the interest rate. In Excel terms, if you have A1 as the starting date, A2 as the ending date, and A3 as the interest rate, your formula is: =a3*(a2-a1)/365 Regards, Fred. "Legal Learning" wrote in message ... Can someone tell this NON-Excel folk how to create a formula to do this? Much appreciated! -- CLG |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Fred. However, how does it calculate the number of days between one
date and another. Simply putting in two dates does not calculate it. For example: a1 would be October 12, 2007 and a2 would be December 22, 2007. I need for Excel to calculate the number of days between those two dates before I can calculate any interest. Right? How would one go about that. Isn't there a built in function of some type? Thanks for you help! -- CLG "Fred Smith" wrote: The best way is to describe your problem in non-Excel terms. Then we can translate it into Excel. Without a decent description, we can only guess at what you need. In non-Excel terms, my guess is you want to: 1. Calculate the number of days in the period. 2. Divide by 365 to get what portion of a year you have. 3. Multiply by the interest rate. In Excel terms, if you have A1 as the starting date, A2 as the ending date, and A3 as the interest rate, your formula is: =a3*(a2-a1)/365 Regards, Fred. "Legal Learning" wrote in message ... Can someone tell this NON-Excel folk how to create a formula to do this? Much appreciated! -- CLG |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
So you have a date issue, rather than an interest calculation issue. Your
problem is your dates are text. To convert them into dates which Excel can use in its calculations, use the Datevalue function, as in: =a3*(datevalue(a2)-datevalue(a1))/365 And, if you want, you can easily avoid the requirement to use Datevalue function by entering your dates in a form that Excel can understand, like 10/12/07 and 12/22/07. You can format the date any way you want after it's been entered. Regards, Fred "Legal Learning" wrote in message ... Thanks Fred. However, how does it calculate the number of days between one date and another. Simply putting in two dates does not calculate it. For example: a1 would be October 12, 2007 and a2 would be December 22, 2007. I need for Excel to calculate the number of days between those two dates before I can calculate any interest. Right? How would one go about that. Isn't there a built in function of some type? Thanks for you help! -- CLG "Fred Smith" wrote: The best way is to describe your problem in non-Excel terms. Then we can translate it into Excel. Without a decent description, we can only guess at what you need. In non-Excel terms, my guess is you want to: 1. Calculate the number of days in the period. 2. Divide by 365 to get what portion of a year you have. 3. Multiply by the interest rate. In Excel terms, if you have A1 as the starting date, A2 as the ending date, and A3 as the interest rate, your formula is: =a3*(a2-a1)/365 Regards, Fred. "Legal Learning" wrote in message ... Can someone tell this NON-Excel folk how to create a formula to do this? Much appreciated! -- CLG |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I googled my question and found out the answer is the datedif function.
Works like a charm. Thanks anyway -- CLG "Fred Smith" wrote: So you have a date issue, rather than an interest calculation issue. Your problem is your dates are text. To convert them into dates which Excel can use in its calculations, use the Datevalue function, as in: =a3*(datevalue(a2)-datevalue(a1))/365 And, if you want, you can easily avoid the requirement to use Datevalue function by entering your dates in a form that Excel can understand, like 10/12/07 and 12/22/07. You can format the date any way you want after it's been entered. Regards, Fred "Legal Learning" wrote in message ... Thanks Fred. However, how does it calculate the number of days between one date and another. Simply putting in two dates does not calculate it. For example: a1 would be October 12, 2007 and a2 would be December 22, 2007. I need for Excel to calculate the number of days between those two dates before I can calculate any interest. Right? How would one go about that. Isn't there a built in function of some type? Thanks for you help! -- CLG "Fred Smith" wrote: The best way is to describe your problem in non-Excel terms. Then we can translate it into Excel. Without a decent description, we can only guess at what you need. In non-Excel terms, my guess is you want to: 1. Calculate the number of days in the period. 2. Divide by 365 to get what portion of a year you have. 3. Multiply by the interest rate. In Excel terms, if you have A1 as the starting date, A2 as the ending date, and A3 as the interest rate, your formula is: =a3*(a2-a1)/365 Regards, Fred. "Legal Learning" wrote in message ... Can someone tell this NON-Excel folk how to create a formula to do this? Much appreciated! -- CLG |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to calculate Compound Interest | Excel Worksheet Functions | |||
Calculate a SUMIF if criteria is between 2 date ranges | Excel Worksheet Functions | |||
calculate odd days interest | Excel Worksheet Functions | |||
How do I calculate interest on actual date? | Excel Worksheet Functions | |||
How do I calculate interest and deduct late fees based on date pa. | New Users to Excel |