G
Guest
Is there a function in access similar to EOMonth "end of
month" In excel
month" In excel
Is there a function in access similar to EOMonth "end of
month" In excel
John Vinson said:There is now:
Public Function EOMonth(dtDate As Variant) As Variant
If Not IsNull(dtDate) Then
EOMonth = DateSerial(Year(dtDate), Month(dtDate) + 1, 0)
End If
End Sub