Friday, August 12, 2016

How to use the DATE Function (VBA)

Description

The Microsoft Excel DATE function returns the current system date. Please note that the worksheet version of the DATE function has different syntax.

Syntax

The syntax for the DATE function in Microsoft Excel is:
Date()

Parameters or Arguments

There are no parameters or arguments for the DATE function.

Applies To

  • Excel 2016, Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000

Type of Function

  • VBA function (VBA)

Example (as VBA Function)

The DATE function can only be used in VBA code in Microsoft Excel.
Let's look at some Excel DATE function examples and explore how to use the DATE function in Excel VBA code:
Date()
Result: '22/11/2003'   (your answer will vary)
For example:
Dim LDate As String

LDate = Date
In this example, the variable called LDate would now contain the current system date.