"IF" Question?

  • Thread starter Thread starter Lime
  • Start date Start date
L

Lime

Any help is greatly appreciated..

I have a column with different dates in it. I need to find the dates that
fall in the month of Aug 2009.

here's what I have
=IF(G2>=08/01/2009 and <=08/31/2009, "Y","N")
 
Lime said:
Any help is greatly appreciated..

I have a column with different dates in it. I need to find the dates that
fall in the month of Aug 2009.

here's what I have
=IF(G2>=08/01/2009 and <=08/31/2009, "Y","N")


=IF(AND(G2>=--"08/01/2009",G2<=--"08/31/2009"),"Y","N")
 
Back
Top