Need help with formula......

D

Dan B

Hi All,
I can't quite get this to do what I need...
I have a spreadsheet that calculates a monthly payment of an insurance
premium by taking the annual premium and dividing it by 12. There are 2
cells that contain dates....a beginning date and ending date of the policy.
I have a formula that calculates how many months are between those 2 dates.
Then I have the due dates for the monthly payments listed for each month of
the year.
For Example:
A1: 01/01/04
B1: 01/01/05
A2: 12 months (formula calculates this)
A3: Annual Premium (dollar amount)
A4: 01/01/04 C4: monthly payment (A3/12)
A5: 02/01/04 C5: monthly payment (A3/12)
A6: 03/01/04 C6: monthly payment (A3/12)
and so on...

What I need is to have the monthly payments start based on the date in A1.
So if the policy begins in april, I want Jan-Mar to be blank, and
April-December to have the monthly payment, which would be the annual
premium /12 * 6 or (A3/12)*A2.

I hope that makes sense...Thanks for any help on this one.
Dan
 
K

Kevin Stecyk

Dan,

For each month payment, you could write something to the effect of....

=if(Current_Month<Start_Month, "", Proper Formula)

The "" is simply a null. You might want 0 instead of "". You can choose.

So for January....

=if(A4<A1, "", A2*A3/12)

Hope that helps.

Best regards,
Kevin
 

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

Similar Threads

Saving for College 1
FV function 2
PMT function question 2
separating date and time 5
CUMIPMT 0
HELP! MORTGAGE SCHEDULE WITH EXTRA PMTS EVERY 4 MONTHS 3
Sumproduct? 1
SUM PRODUCT FUNCTION 5

Top