- Does NOW() update automatically every second, or only when I edit the sheet?
- NOW() updates only when the spreadsheet recalculates—when you open it, modify a cell, or force a recalculation with F9/Ctrl+Shift+F9. It does not update in real-time every second. If you need a static timestamp, copy and Paste Special > Values.
- What's the difference between NOW() and TODAY()?
- NOW() returns the current date and time (e.g., 2026-09-16 14:35:22), while TODAY() returns only the date (2026-09-16). Use NOW() for precise timestamps like inventory audit times; use TODAY() when you only care about the calendar day.
- Can I use NOW() with different time zones, like for suppliers in different countries?
- No. NOW() always returns your device's local time. To adjust for a different timezone, you must manually add or subtract hours: =NOW()+TIME(8,0,0) adds 8 hours. Some apps like Google Sheets offer timezone conversion functions, but NOW() itself is local-only.
- Why does comparing NOW() to an expiry date sometimes give unexpected results?
- Because NOW() includes the time component, comparisons can be off by hours. If an item expires on 2026-09-25 at midnight and NOW() is 2026-09-25 at 2 PM, NOW()>expiry returns TRUE (expired). Use INT(NOW()) or TODAY() to compare dates only, ignoring the time.