Project a date and calculate a % in one formula

B

bert_lady

See two colums below. My formula needs to calculate 60 days out from the
given date in Col A , then from that date give me an annualize 6% from the
caculated date until 11/16/09. I have beat my head against the wall on this
one. Thanks


Col A Col B
01/05/05 528.00
01/08/05 482.63
01/08/05 544.50
01/10/05 700.87


bert_lady
 
S

Sean Timmons

Think this will get what you want:

=ACCRINT(DATE(YEAR(A2+60),MONTH(A2+60),DAY(A2+60)),DATE(YEAR(A2+60)+1,MONTH(A2+60),DAY(A2+60)),DATEVALUE("11/16/2009"),0.06,B2,1)
 
B

bert_lady

--
bert_lady


Sean Timmons said:
Think this will get what you want:

=ACCRINT(DATE(YEAR(A2+60),MONTH(A2+60),DAY(A2+60)),DATE(YEAR(A2+60)+1,MONTH(A2+60),DAY(A2+60)),DATEVALUE("11/16/2009"),0.06,B2,1)
 
B

bert_lady

Thanks Sean,

I still don't get what the repeat of the Date functions does in this
operation, also the Year +1 - what am I missing?
 
S

Sean Timmons

the first date is the original date of the loan. The second date is the first
compounding date. I presumed you wanted to compound on the 365th (or 366th)
day from the initiation date. If you want to compound on, say, 12/31 of the
year, you can do =DATEVALUE(DATE(YEAR(A2+60),MONTH(12),DAY(31)) at the
beginning.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top