ExcelFunctions.net Logo

The Excel NOW Function

Home » Excel-Built-In-Functions » Excel-Date-And-Time-Functions » Excel-Now-Function
Search this site:
Custom Search
Related Functions: 

Basic Description

The Excel Now function returns the current date and time. The function has no arguments and therefore, the syntax of the function is:

NOW()

The NOW function updates every time your Excel worksheet is refreshed, and so any cells containing the function will be continually changing.


Now Function Examples

The following example shows use of the NOW function, combined with the If function, to highlight when an appointment is due.

The function format is shown in the upper spreadsheet and the results, at 2 different times, are shown in the two spreadsheets below.

 Formula:
  A B
1 Appointment Due:  
2 16-Nov-2010 17:00 =IF( A2-NOW() < 1/24, "!!! Due within 1 hr !!!", "Not yet due" )

 Result at 15:59 hrs on 16-Nov-2010:
  A B
1 Appointment Due:  
2 16-Nov-2010 17:00 Not yet due

 Result at 16:01 hrs on 16-Nov-2010:
  A B
1 Appointment Due:  
2 16-Nov-2010 17:00 !!! Due within 1 hr !!!

In the above example, the current time (returned by the NOW function) is subtracted from the appointment time and the result is compared against 1 hour (=1/24 - see the page on Excel Dates & Times for an explanation of this).

If the current time is less than 1 hour from the appointment time, the alert is shown; otherwise no text is shown in cell B2. The contents of cell B2 have also been formatted to have red bold text, to make the alert stand out more.

Note that:

  • The above alert formula could be made more sophisticated by adding more conditions to the IF function, to highlight when the appointment time has been passed, etc.
  • The above appointment alert will only work if your spreadsheet is being continually updated. While the spreadsheet is unused, the contents of cell B2 will stay the same as at the last evaluation.

Further information on the Excel Now function can be found on the Microsoft Office website.





Valid XHTML 1.0 Transitional
Disclaimer Privacy Policy

Copyright © 2008-2011 ExcelFunctions.net