0
0
Google Sheetsspreadsheet~20 mins

EDATE and EOMONTH in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
EDATE and EOMONTH Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate Date 3 Months Ahead Using EDATE
If cell A1 contains the date 2024-01-15, what will be the result of the formula =EDATE(A1, 3)?
A2024-04-15
B2024-03-15
C2024-04-30
D2024-05-15
Attempts:
2 left
💡 Hint
EDATE adds the number of months to the date in A1, keeping the day number if possible.
📊 Formula Result
intermediate
2:00remaining
Find Last Day of Month 2 Months Before Using EOMONTH
If cell B2 contains the date 2024-06-10, what is the result of =EOMONTH(B2, -2)?
A2024-04-10
B2024-05-31
C2024-04-30
D2024-06-30
Attempts:
2 left
💡 Hint
EOMONTH returns the last day of the month, offset by the number of months.
Function Choice
advanced
2:00remaining
Choose the Correct Formula to Find the Last Day of Next Month
Which formula correctly returns the last day of the month after the date in cell C3?
A=EOMONTH(C3, 1)
B=EDATE(C3, 1)
C=EOMONTH(C3, 0)
D=EDATE(C3, 0)
Attempts:
2 left
💡 Hint
EOMONTH returns the last day of the month offset by months; EDATE returns the same day number offset by months.
🎯 Scenario
advanced
2:00remaining
Calculate Subscription Expiry Date 6 Months Later on Last Day of Month
You have a subscription start date in cell D4. You want to find the expiry date exactly 6 months later, but always on the last day of that month. Which formula should you use?
A=EDATE(D4, 6)
B=EDATE(D4, 5)
C=EOMONTH(D4, 5)
D=EOMONTH(D4, 6)
Attempts:
2 left
💡 Hint
EOMONTH returns the last day of the month offset by months.
data_analysis
expert
2:00remaining
Analyze Formula Output for End of Month with Negative Offset
Given the date 2024-03-31 in cell E5, what is the output of =EOMONTH(E5, -1)?
A2024-03-01
B2024-02-29
C2024-02-28
D2024-01-31
Attempts:
2 left
💡 Hint
Remember 2024 is a leap year with 29 days in February.