0
0
Google Sheetsspreadsheet~20 mins

TODAY and NOW in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
πŸŽ–οΈ
Date & Time Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
πŸ“Š Formula Result
intermediate
2:00remaining
What is the output of =TODAY() if today is 2024-06-15?
Assuming the current date is June 15, 2024, what will the formula =TODAY() display in a Google Sheets cell?
Google Sheets
=TODAY()
A2024-06-15
BThe current time including hours and minutes
C06/15/2024 12:00 PM
D2024-06-15 00:00:00
Attempts:
2 left
πŸ’‘ Hint
Remember, TODAY() returns only the date part without time.
πŸ“Š Formula Result
intermediate
2:00remaining
What does =NOW() show in Google Sheets?
If you enter =NOW() in a cell, what kind of value will it display?
Google Sheets
=NOW()
AThe current date and time including hours and minutes
BOnly the current date without time
COnly the current time without date
DThe date and time of the last sheet edit
Attempts:
2 left
πŸ’‘ Hint
Think about what NOW() means in real life: the exact moment you look at the clock.
❓ Function Choice
advanced
2:00remaining
Which formula updates the time every time the sheet recalculates?
You want a cell to always show the current time that updates automatically. Which formula should you use?
A=TIME()
B=TODAY()
C=NOW()
D=DATE()
Attempts:
2 left
πŸ’‘ Hint
TODAY() only updates the date, not the time.
🎯 Scenario
advanced
2:00remaining
Calculate days passed since a date using TODAY()
You have a date in cell A1: 2024-01-01. Which formula correctly calculates how many days have passed from that date until today?
A=DATEDIF(A1, NOW(), "M")
B=NOW() - A1
C=A1 - TODAY()
D=TODAY() - A1
Attempts:
2 left
πŸ’‘ Hint
Remember that subtracting dates gives the number of days between them.
❓ data_analysis
expert
2:00remaining
Analyze formula behavior with volatile functions TODAY() and NOW()
You have a sheet with these formulas in cells:

A1: =TODAY()
B1: =NOW()

After opening the sheet at 9:00 AM and then again at 3:00 PM the same day, what will happen to the values in A1 and B1?
AA1 updates to the new time; B1 stays the same
BA1 stays the same; B1 updates to the new current time
CBoth A1 and B1 stay the same as when the sheet was first opened
DBoth A1 and B1 update to the new current date and time
Attempts:
2 left
πŸ’‘ Hint
TODAY() changes only when the date changes, NOW() updates with time.