PC Review


Reply
 
 
Gator Girl
Guest
Posts: n/a
 
      22nd Mar 2010
In cell m3 is 1/1/2010 in cell n3 is 4/1/2010. (the actual year will
change every year)

I want to say that if the date in cell z3 is between the date in M3 and the
date in N3, return 1

I don't find a function for "between". HELP please.
 
Reply With Quote
 
 
 
 
Roger Govier
Guest
Posts: n/a
 
      22nd Mar 2010
Hi

=IF(AND(Z3>=M3,Z3<=N£),1,"")
--
Regards
Roger Govier

Gator Girl wrote:
> In cell m3 is 1/1/2010 in cell n3 is 4/1/2010. (the actual year will
> change every year)
>
> I want to say that if the date in cell z3 is between the date in M3 and the
> date in N3, return 1
>
> I don't find a function for "between". HELP please.

 
Reply With Quote
 
Roger Govier
Guest
Posts: n/a
 
      22nd Mar 2010
that should have read
=IF(AND(Z3>=M3,Z3<=N3),1,"")

--
Regards
Roger Govier

Roger Govier wrote:
> Hi
>
> =IF(AND(Z3>=M3,Z3<=N£),1,"")
> --
> Regards
> Roger Govier
>
> Gator Girl wrote:
>> In cell m3 is 1/1/2010 in cell n3 is 4/1/2010. (the actual year
>> will change every year)
>>
>> I want to say that if the date in cell z3 is between the date in M3
>> and the date in N3, return 1
>>
>> I don't find a function for "between". HELP please.

 
Reply With Quote
 
Gary''s Student
Guest
Posts: n/a
 
      22nd Mar 2010
if you want "between" to INCLUDE the end points:
=IF(AND(Z3>=M3,Z3<=N3),1,0)
if you want "between" to EXCLUDE the end points:
=IF(AND(Z3>M3,Z3<N3),1,0)

--
Gary''s Student - gsnu201001


"Gator Girl" wrote:

> In cell m3 is 1/1/2010 in cell n3 is 4/1/2010. (the actual year will
> change every year)
>
> I want to say that if the date in cell z3 is between the date in M3 and the
> date in N3, return 1
>
> I don't find a function for "between". HELP please.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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



Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:21 AM.