Complete the formula to add 3 months to the date in cell A1 using EDATE.
=EDATE(A1, [1])The EDATE function adds a specified number of months to a date. Here, 3 months are added to the date in A1.
Complete the formula to find the last day of the month 2 months after the date in B2 using EOMONTH.
=EOMONTH(B2, [1])EOMONTH returns the last day of the month, offset by the number of months. Here, 2 months after B2.
Fix the error in the formula to subtract 1 month from the date in C3 using EDATE.
=EDATE(C3, [1])To subtract months, use a negative number. Here, -1 subtracts one month from C3.
Fill both blanks to create a formula that finds the last day of the month 4 months before the date in D4.
=EOMONTH(D4, [1]) + [2]
EOMONTH with -4 finds the last day 4 months before D4. Adding 0 keeps that date unchanged.
Fill all three blanks to create a formula that adds 6 months to E5, then finds the last day of that month, and finally subtracts 5 days.
=EOMONTH(EDATE(E5, [1]), [2]) - [3]
First, EDATE adds 6 months to E5. Then EOMONTH with 0 finds the last day of that month. Finally, subtract 5 days to get the date 5 days before month end.