Is there a function to get the first and the last day of the actual month?
Regards
4vTurbo
Regards
4vTurbo
CDate(Format(Date(), "m/1/yyyy")) DateAdd("d", 1 - Day(Date()), Date())
DateAdd("d", -1, CDate(Format(DateAdd("m", 1, Date()), "m/1/yyyy")))
Comment