Excel TODAY NOW skills practice template

In this guide, you’ll master Excel TODAY NOW skills to work with current dates and times efficiently. Using TODAY() and NOW() functions, you can calculate overdue invoices, track deadlines, generate aging reports, and create dynamic dashboards. These skills are essential for professional Excel users who want to automate date and time calculations and enhance reporting accuracy.

Whether you are preparing aging reports, due date reminders, project tracking, or payroll reports, mastering TODAY() and NOW() will greatly improve your Excel skills and save you time.

What are TODAY() and NOW()?

  • TODAY() → Returns the current system date (without time).
  • NOW() → Returns the current system date and time.

Both functions update every time you refresh or reopen your Excel sheet.

Example: If today is August 28, 2025, 4:45 PM

  • =TODAY()28-08-2025
  • =NOW()28-08-2025 16:45

Example Dataset

We’ll use an Invoice dataset to demonstrate practical problems with TODAY() and NOW():

Invoice_IDCustomerInvoice_DateDue_DateAmountStatus
INV001John01-08-202515-08-2025500Paid
INV002Mary05-08-202520-08-20251200Pending
INV003Sam10-08-202525-08-2025800Pending
INV004Rita15-08-202530-08-20251500Pending
INV005Alex20-08-202505-09-2025600Pending
INV006Nina22-08-202510-09-2025900Paid
INV007David25-08-202515-09-2025700Pending
INV008Tom27-08-202520-09-20251100Pending

20 Excel TODAY NOW Skills Practice Problem

Note: Results may differ from examples because TODAY() and NOW() always return the current date and time.

  1. Find Today’s Date
    Formula: =TODAY()
    Answer: 28-08-2025
  2. Find Current Date and Time
    Formula: =NOW()
    Answer: 28-08-2025 16:45
  3. Calculate Days Overdue (Invoice INV002 – Due 20-08-2025)
    Formula: =TODAY()-D3
    Answer: 8 days overdue
  4. Check if Invoice INV004 (Due 30-08-2025) is Overdue
    Formula: =IF(D5<TODAY(),"Overdue","On Time")
    Answer: On Time
  5. Find Age of Invoice INV003 (Issued 10-08-2025)
    Formula: =TODAY()-C4
    Answer: 18 days old
  6. Display Due Date in Long Format (INV004)
    Formula: =TEXT(D5,"mmmm dd, yyyy")
    Answer: August 30, 2025
  7. Check if INV005 (Due 05-09-2025) is Due This Week
    Formula: =IF(AND(D6>=TODAY(),D6<=TODAY()+7),"Due This Week","")
    Answer: “” (empty, not this week)
  8. Highlight Invoices Due Today
    Formula: =IF(D2=TODAY(),"Due Today","")
    Answer: None (no due dates = 28-08-2025)
  9. Count Pending Invoices Already Due
    Formula: =COUNTIFS(E:E,"Pending",D:D,"<="&TODAY())
    Answer: 2 (INV002, INV003)
  10. Days Until Due Date (INV005 Due 05-09-2025)
    Formula: =D6-TODAY()
    Answer: 8 days left
  11. Reminder Message (INV002)
    Formula: ="Invoice "&A3&" is due in "&D3-TODAY()&" days"
    Answer: Invoice INV002 is due in -8 days (overdue)
  12. Check if Invoice is Paid (INV006)
    Formula: =IF(E7="Paid","Paid","Pending")
    Answer: Paid
  13. Weekday of Due Date (INV004 – 30-08-2025)
    Formula: =TEXT(D5,"dddd")
    Answer: Saturday
  14. Current Time Only
    Formula: =TEXT(NOW(),"hh:mm AM/PM")
    Answer: 04:45 PM
  15. Current Year
    Formula: =YEAR(TODAY())
    Answer: 2025
  16. Current Month Name
    Formula: =TEXT(TODAY(),"mmmm")
    Answer: August
  17. Days Remaining in Current Month
    Formula: =EOMONTH(TODAY(),0)-TODAY()
    Answer: 3 days left
  18. Invoice Aging Bucket (INV003, Issued 10-08-2025)
    Formula: =IF(TODAY()-C4<=30,"0-30 Days", IF(TODAY()-C4<=60,"31-60 Days","60+ Days"))
    Answer: 0-30 Days
  19. Current Quarter
    Formula: ="Q"&ROUNDUP(MONTH(TODAY())/3,0)
    Answer: Q3
  20. Generate Report Line
    Formula: ="[Report Generated on " & TEXT(NOW(),"dd-mmm-yyyy hh:mm") & "]"
    Answer: [Report Generated on 28-Aug-2025 16:45]

Get Free Excel TODAY NOW Practice File

What This Template Teaches

This Excel TODAY() / NOW() template helps you practice essential date and time management skills. You’ll learn how to:

  • Track overdue invoices automatically
  • Build real-time aging reports
  • Generate reminders dynamically
  • Format dates and times into professional reports
  • Improve your Excel skills for finance, HR, and project management

The file includes 20 practical problems with solutions, so you can follow step by step and master Excel’s date and time functions for real-world business scenarios.


Related Topics: