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. To add 3 months, use 3 as the second argument.
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 given. To get 2 months after, use 2.
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 the date.
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. Adding 0 keeps the 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 adds 2 days.
=EOMONTH(EDATE(E5, [1]), [2]) + [3]
First, EDATE adds 6 months. Then EOMONTH with 0 finds the last day of that month. Adding 2 days moves the date forward by 2 days.