Calculate First Day Of Previous Month
DZone's Guide to
Calculate First Day Of Previous Month
Join the DZone community and get the full member experience.
Join For FreeVB/VBA/VB.NET one-liner to calculate the start of the previous month. Useful for SSRS/RDL Expressions and Excel/Office Formulas. Note that it does not use string parsing, which can cause localization problems.
DateAdd("D", -1.0 * DatePart("D", Today) + 1, DateAdd("m", -1, Today))
Topics:
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}