Concept Flow
A B 1 TODAY() Current Date 2 NOW() Current Date and Time
This sheet uses TODAY() to get the current date and NOW() to get the current date and time.
A B 1 TODAY() Current Date 2 NOW() Current Date and Time
=TODAY() and =NOW()TODAY() returns the current date without time. NOW() returns the current date and time.
| Step | Expression | Evaluates To | Explanation |
|---|---|---|---|
| 1 | TODAY() | 2024-06-15 | TODAY() returns the current date only, assuming today is June 15, 2024. |
| 2 | NOW() | 2024-06-15 14:30:00 | NOW() returns the current date and time, assuming current time is 2:30 PM on June 15, 2024. |
| Function | Returned Value |
|---|---|
| TODAY() | 2024-06-15 |
| NOW() | 2024-06-15 14:30:00 |