Challenge - 5 Problems
Date & Time Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1: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()
Attempts:
2 left
💡 Hint
Remember, TODAY() returns only the date part, no time.
✗ Incorrect
The TODAY() function returns the current date without any time. It updates automatically each day.
📊 Formula Result
intermediate1: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()
Attempts:
2 left
💡 Hint
NOW() includes both date and time.
✗ Incorrect
The NOW() function returns the current date and time, updating whenever the sheet recalculates.
❓ Function Choice
advanced1: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?
Attempts:
2 left
💡 Hint
Think about which function excludes the time part.
✗ Incorrect
TODAY() returns only the date. NOW() returns date and time. DATE() and TIME() require arguments.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Subtract the start date from today's date to get days passed.
✗ Incorrect
Subtracting the start date from TODAY() gives the number of days passed. NOW() includes time, which can cause decimals. DATEDIF with NOW() is less common here.
❓ data_analysis
expert2: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?Attempts:
2 left
💡 Hint
Excel stores dates as whole numbers and times as fractions of a day.
✗ Incorrect
TODAY() returns the date as a whole number (days since 1/1/1900). NOW() adds the time as a decimal fraction of the day. For example, 9:30 AM is 9.5/24 = 0.3958.