0
0
Excelspreadsheet~20 mins

TODAY and NOW functions in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Date & Time Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the output of =TODAY() in Excel?
If today is June 15, 2024, what value will the formula =TODAY() show in a cell?
Excel
=TODAY()
AThe current date without time, e.g., 6/15/2024
BThe current date and time, e.g., 6/15/2024 14:30
CThe current time only, e.g., 14:30
DA static date that never changes
Attempts:
2 left
💡 Hint
Remember, TODAY() returns only the date part, no time.
📊 Formula Result
intermediate
1:30remaining
What does =NOW() display in Excel?
If the current date and time is June 15, 2024, 3:45 PM, what will =NOW() show?
Excel
=NOW()
AThe current date and time, e.g., 6/15/2024 3:45 PM
BOnly the current time, e.g., 3:45 PM
COnly the current date, e.g., 6/15/2024
DA fixed timestamp that never changes
Attempts:
2 left
💡 Hint
NOW() includes both date and time.
Function Choice
advanced
1:30remaining
Which function should you use to get only the current date without time?
You want a formula that updates daily to show the current date but does not show the time. Which function is correct?
ANOW()
BTIME()
CDATE()
DTODAY()
Attempts:
2 left
💡 Hint
Think about which function excludes the time part.
🎯 Scenario
advanced
2:00remaining
You want to calculate the number of days since a project started using TODAY()
If cell A1 has the project start date (e.g., 5/1/2024), which formula correctly calculates how many days have passed until today?
A=A1 - TODAY()
B=NOW() - A1
C=TODAY() - A1
D=DATEDIF(A1, NOW(), "d")
Attempts:
2 left
💡 Hint
Subtract the start date from today's date to get days passed.
data_analysis
expert
2:30remaining
Analyzing formula outputs: What is the difference between =NOW() and =TODAY() in Excel?
You enter =NOW() and =TODAY() in two cells at 9:30 AM on June 15, 2024. What is the difference in their numeric values?
ANOW() and TODAY() return exactly the same numeric value
BNOW() value is TODAY() value plus a fractional part representing time (e.g., 0.3958 for 9:30 AM)
CTODAY() value is NOW() value plus a fractional part representing time
DNOW() returns a text string, TODAY() returns a number
Attempts:
2 left
💡 Hint
Excel stores dates as whole numbers and times as fractions of a day.