M
MJ
I have a database that triggers a table archive piece when the end of the
month occurs. In the case of a leap year, I think that in the case of
February the way it is currently written the actions are done on both Feb 28
and 29:
If ((Format(date, "dd") = "28") And (Format(date, "mmm") = "Feb")) Or _
((Format(date, "dd") = "29") And (Format(date, "mmm") = "Feb")) Then
Is there a way that I can check to see if this is a leap year or not, then
do the appropriate check for 28 or 29?
month occurs. In the case of a leap year, I think that in the case of
February the way it is currently written the actions are done on both Feb 28
and 29:
If ((Format(date, "dd") = "28") And (Format(date, "mmm") = "Feb")) Or _
((Format(date, "dd") = "29") And (Format(date, "mmm") = "Feb")) Then
Is there a way that I can check to see if this is a leap year or not, then
do the appropriate check for 28 or 29?