Skip to content

Instantly share code, notes, and snippets.

@stasgm
Created June 10, 2019 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stasgm/e297a1dddadb68b0dbb33cef51bf12d5 to your computer and use it in GitHub Desktop.
Save stasgm/e297a1dddadb68b0dbb33cef51bf12d5 to your computer and use it in GitHub Desktop.
VBS first and last day of the month
FirstDayCM = DateSerial(year(date), Month(date), 1) ' Первый день текущего месяца
LastDayCM = DateAdd("m", 1, FirstDayCM) - 1 ' Последний день текущего месяца
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment