devxlogo

Add and Subtract Dates Using VBScript

VBScript has two functions for adding/subtracting dates or date values: DateAdd and DateDiff. For example:

 DateAdd(interval, number, date)DateDiff(interval, date1, date2 [,firstdayofweek[, firstweekofyear]])

Interval could be “yyyy” for Year, “q” for Quarter, “m” for Month, “y” for Day of year, “d” for Day, “w” for Weekday, “ww” for Week of year, “h” for Hour, “n” for Minute, or “s” Second. For example, to find the date a month from today you would write:

 Response.Write DateAdd("m", 1, Date())

To find the days until the millenium, you would write:

 Response.Write DateDiff("d", Date(), CDate("1/1/2000"))

A better use for these date functions may be for your ad-hoc SQL statements. For example, this query finds all sales from the last quarter.

 SzSQL = "Select * From Sales Where SaleDate > #" & DateAdd("q", -1, Date()) & "#"

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.