Complete the formula to get the current date in Google Sheets.
= [1]()The TODAY() function returns the current date without the time.
Complete the formula to get the current date and time in Google Sheets.
= [1]()The NOW() function returns the current date and time, updating every time the sheet recalculates.
Fix the error in the formula to get the current date only.
= [1]Functions in Google Sheets need parentheses () to work. TODAY() returns the current date.
Fill both blanks to create a formula that shows the current date and time, then adds 1 day.
= [1]() + [2]
NOW() gives current date and time. Adding 1 adds one full day (24 hours).
Fill all three blanks to create a formula that shows the current date, adds 3 days, and formats the result as text.
= TEXT([1]() + [2], [3])
TODAY() returns current date. Adding 3 adds three days. TEXT(..., "yyyy-mm-dd") formats the date as year-month-day.