NOW

    Date & Time

    Returns the current date and time. Updates automatically when the worksheet is recalculated.

    Translations
    EnglishNOW
    FrenchMAINTENANT
    SpanishAHORA
    GermanJETZT
    ItalianADESSO
    PortugueseAGORA
    DutchNU
    PolishTERAZ
    RussianТДАТА
    TurkishŞİMDİ
    CzechNYNÍ
    HungarianMOST
    SwedishNU
    DanishNU
    FinnishNYT
    Syntax
    NOW()
    Examples
    =NOW()
    Current date/time

    Returns current date and time

    =INT(NOW())
    Today's date

    Extracts just the date portion

    =NOW()-TODAY()
    Current time

    Returns just the time as a decimal

    Tips & Best Practices
    • NOW() returns a serial number with date and time
    • Use TODAY() if you only need the date
    • Time is stored as a decimal fraction of a day
    Common Mistakes
    • Using NOW to timestamp when something happened, not realizing it recalculates and changes every time the workbook opens or recalculates, not just once
    • Forgetting NOW includes both date and time, which can throw off date-only comparisons unless you strip the time portion with INT()
    • Expecting NOW to reflect a server's time zone rather than the local computer's system clock
    Related Functions
    TODAYReturns just the current date, without the time component.
    TIMEBuilds a specific time value from hour, minute, and second components.
    HOURExtracts just the hour from a date-and-time value like the one NOW returns.
    Frequently Asked Questions

    How do I get just the date from NOW, without the time?

    Wrap it in INT(), like INT(NOW()), which strips the decimal time portion and leaves the whole-number date.

    Why does my timestamp keep changing after I recorded it with NOW?

    NOW recalculates every time the workbook recalculates, so it never stays fixed. Use Ctrl+Shift+; to insert a static timestamp instead, or copy and paste the result as a value.

    Does NOW use my computer's clock or a server's?

    Your local computer's system clock, which is why the result can look off if your system time or time zone is set incorrectly.

    Need to translate a formula using NOW?

    Use our translator to convert your complete formula