G
Guest
I want create code that will call a function on the first day of each month.
Any help?
Any help?
freakazeud said:Hi,
you could try:
If DateSerial(Year(Date),Month(Date),1) = Date Then
'execute your code
End If
I want create code that will call a function on the first day of each month.
Any help?
Dirk Goldgar said:Wouldn't
If Day(Date) = 1 Then
' ...
be simpler?
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)