README.md
December 4, 2022 ยท View on GitHub
Description
Last day of the month
Calculates the last day of the month.
"Jim Doherty" jdoherty@proweb.co.uk
More Info
| Submitted On | |
| By | Newsgroup Posting |
| Level | Unknown |
| User Rating | 5.0 (15 globes from 3 users) |
| Compatibility | VB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0 |
| Category | Math/ Dates |
| World | Visual Basic |
| Archive File |
Source Code
Function EndOfMonth (D As Variant) As Variant
EndOfMonth = DateSerial(Year(D), Month(D) + 1, 0)
End Function