README.md

December 4, 2022 ยท View on GitHub

EndOfMonth

Description

Last day of the month

Calculates the last day of the month.

"Jim Doherty" jdoherty@proweb.co.uk

More Info

Submitted On
ByNewsgroup Posting
LevelUnknown
User Rating5.0 (15 globes from 3 users)
CompatibilityVB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0
CategoryMath/ Dates
WorldVisual Basic
Archive File

Source Code

Function EndOfMonth (D As Variant) As Variant
 EndOfMonth = DateSerial(Year(D), Month(D) + 1, 0)
End Function

Contents

  1. 1EndOfMonth
  2. 1.1Description
  3. 1.2More Info
  4. 1.3Source Code