Why Doesnt this work? (Probably a stupid Date Question)

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

Guest

Hi,

Can anyone tell me what I am doing wrong??

------------------------
if Now() = #06-08-04# Then
Do something....

I realise that this is probably a really stupid question, but if someone can
steer me into the light, i would appreciate it!!

Many thanks,


Mark.
 
Now contains both date and time. Your expression will work only at midnight.

Try
If Date() = #06-08-04# Then
 
Back
Top