NOW Function
The NOW
function in Google Sheets returns the current date and time.
Syntax
NOW()
Examples
- Current Date and Time
Get the current date and time:
=NOW()
- Used in Calculations
Calculate the hours since the start of the day:
=(NOW() - DATEVALUE("2024-08-14"))*24
Notes
- Updates every time the spreadsheet recalculates.
- Useful for tracking time-sensitive data or logs.
Related Functions
- TODAY: Returns the current date.