Recall & Review
beginner
What does the
TODAY() function return in Google Sheets?The
TODAY() function returns the current date without the time. It updates automatically each day when you open or refresh the sheet.Click to reveal answer
beginner
What is the difference between
TODAY() and NOW() functions?TODAY() returns only the current date (year, month, day). <br>NOW() returns the current date and time (hours, minutes, seconds).Click to reveal answer
intermediate
How often do
TODAY() and NOW() update their values?Both
TODAY() and NOW() update automatically when you open or edit the sheet. <br>They do not update every second unless the sheet recalculates.Click to reveal answer
intermediate
How can you use
TODAY() to calculate someone's age if their birthday is in cell A1?Use the formula:
=INT((TODAY()-A1)/365.25) to get the age in years. <br>This subtracts the birthday from today and divides by 365.25 days to account for leap years.Click to reveal answer
intermediate
What format does
NOW() return and how can you display only the time?NOW() returns date and time as a number with decimal part representing time. <br>To show only time, format the cell with a time format like hh:mm:ss or use =TEXT(NOW(), "hh:mm:ss").Click to reveal answer
What does the
TODAY() function return?✗ Incorrect
TODAY() returns the current date without time.Which function gives you the current date and time in Google Sheets?
✗ Incorrect
NOW() returns both current date and time.If you want to calculate how many days have passed since a date in cell A1, which formula is correct?
✗ Incorrect
Subtracting the past date from
TODAY() gives days passed.How often do
TODAY() and NOW() update their values?✗ Incorrect
They update when the sheet recalculates, usually on open or edit.
Which formula shows only the time part of the current date and time?
✗ Incorrect
=TEXT(NOW(), "hh:mm:ss") formats the current time only.Explain how the
TODAY() and NOW() functions work and when they update.Think about how your phone clock updates when you open an app.
You got /4 concepts.
Describe a real-life example where you would use
TODAY() in a spreadsheet.Think about how you check dates on a calendar or planner.
You got /4 concepts.