Friday, August 12, 2016

How to use the NOW Function (WS,VBA)

Description

The Microsoft Excel NOW function returns the current system date and time. The NOW function will refresh the date/time value whenever the worksheet recalculates.

Syntax

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

Parameters or Arguments

There are no parameters or arguments for the NOW function.

Applies To

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

Type of Function

  • Worksheet function (WS)
  • VBA function (VBA)

Example (as Worksheet Function)

Let's look at some Excel NOW function examples and explore how to use the NOW function as a worksheet function in Microsoft Excel:
Microsoft Excel
The spreadsheet will continue to display this value, until the worksheet recalculates. By pressing the F9 key, you can force the worksheet to recalculate and the NOW function will update its value.

Example (as VBA Function)

The NOW function can also be used in VBA code in Microsoft Excel.
Let's look at some Excel NOW function examples and explore how to use the NOW function in Excel VBA code:
Dim LValue As Date

LValue = Now
In this example, the variable called LValue would now contain the current system date and time.

No comments:

Post a Comment