between dates

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have the following information:

Ope Date Ammount Start Date End Date
09/11/2006 5.000 09/11/2006 09/11/2007

In the first year you charge 4.50%
If I need to muply the ammount with the %change IF the operation date is
between the start and the end date, haw should I write the formula?
IF(StartDate>=OpeDate<=EndDate, 4.50%*Ammount,0)...this didn´t work!

Please help as soon as possible!
 
IF(AND(StartDate>=OpeDate,OpeDate<=EndDate), 4.50%*Ammount,0)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
You want to use an AND in your formula...

IF(And(StartDate>=OpeDate, OpeDate<=EndDate), 4.50%*Ammount,0)
 
Assume Op date is A2, Start date is C2, End date is D2 and Amount is
B2, then try this:

=IF(AND(A2>=C2,A2<=D2),B2*0.045,0)

Hope this helps.

Pete
 
=IF(AND(StartDate>=OpeDate,OpeDate<=EndDate),4.50%*Amount,0)
best wishes
 
Try =IF(AND(StartDate<=OpeDate,OpeDate<=EndDate), 4.50%*Ammount,0)
 

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

Back
Top