0
0
Google Sheetsspreadsheet~10 mins

Why date calculations drive business logic in Google Sheets - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to calculate the number of days between two dates in Google Sheets.

Google Sheets
=DATEDIF(A1, [1], "D")
Drag options to blanks, or click blank then click option'
AB1
BC1
CA2
DB2
Attempts:
3 left
💡 Hint
Common Mistakes
Using the same cell for both dates.
Using a text string instead of a cell reference.
Forgetting the unit "D" for days.
2fill in blank
medium

Complete the formula to add 30 days to a date in cell A1.

Google Sheets
=A1 [1] 30
Drag options to blanks, or click blank then click option'
A*
B+
C-
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using minus instead of plus.
Using multiplication or division which changes the date incorrectly.
3fill in blank
hard

Fix the error in the formula to calculate the number of months between two dates in A1 and B1.

Google Sheets
=DATEDIF(A1, B1, [1])
Drag options to blanks, or click blank then click option'
A"Y"
B"MD"
C"M"
D"D"
Attempts:
3 left
💡 Hint
Common Mistakes
Using "Y" which calculates years.
Using "D" which calculates days.
Using "MD" which calculates days ignoring months and years.
4fill in blank
hard

Fill both blanks to create a formula that returns TRUE if the date in A1 is before today.

Google Sheets
=A1 [1] [2]()
Drag options to blanks, or click blank then click option'
A<
B>
CTODAY
DNOW
Attempts:
3 left
💡 Hint
Common Mistakes
Using > instead of <.
Using NOW() which includes time and may cause unexpected results.
5fill in blank
hard

Fill all three blanks to create a formula that calculates the number of weekdays between two dates in A1 and B1.

Google Sheets
=NETWORKDAYS([1], [2], [3])
Drag options to blanks, or click blank then click option'
AA1
BB1
CC1
DD1
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping start and end dates.
Leaving the holidays argument empty or incorrect.
Using cells that do not contain dates.