#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 48
Default between dates

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!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default between dates

IF(AND(StartDate=OpeDate,OpeDate<=EndDate), 4.50%*Ammount,0)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"thanks" wrote in message
...
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!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,939
Default between dates

You want to use an AND in your formula...

IF(And(StartDate=OpeDate, OpeDate<=EndDate), 4.50%*Ammount,0)
--
HTH...

Jim Thomlinson


"thanks" wrote:

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!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default between dates

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

thanks wrote:

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!


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default between dates

=IF(AND(StartDate=OpeDate,OpeDate<=EndDate),4.50% *Amount,0)
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"thanks" wrote in message
...
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!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default between dates

Try =IF(AND(StartDate<=OpeDate,OpeDate<=EndDate), 4.50%*Ammount,0)
--
David Biddulph

"thanks" wrote in message
...
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!



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default between dates

Thanks for your help! That worked perfectly!

"David Biddulph" wrote:

Try =IF(AND(StartDate<=OpeDate,OpeDate<=EndDate), 4.50%*Ammount,0)
--
David Biddulph

"thanks" wrote in message
...
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!




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Identifying unique dates in a row of cells containing dates... cdavidson Excel Discussion (Misc queries) 9 October 13th 06 08:43 PM
Identifying unique dates in a range of cells containing dates... cdavidson Excel Discussion (Misc queries) 4 October 13th 06 03:30 PM
Dates showing are not what I type Mick New Users to Excel 5 July 6th 06 04:19 AM
formula to add dates. S S Excel Worksheet Functions 8 April 5th 06 07:53 PM
need to convert list of dates to count no. of dates by week neowok Excel Worksheet Functions 13 January 30th 06 03:54 PM


All times are GMT +1. The time now is 12:51 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright Đ2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"