Complete the formula to get the current date in Excel.
=TODAY([1])The TODAY function in Excel does not take any arguments, so it must be called with empty parentheses ().
Complete the formula to calculate the number of days between two dates in cells A1 and B1.
=B1 [1] A1Subtracting the earlier date (A1) from the later date (B1) gives the number of days between them.
Fix the error in the formula to add 7 days to the date in cell A1.
=A1 [1] 7
To add days to a date, you use the plus sign + in Excel.
Fill both blanks to calculate the number of full months between dates in A1 and B1 using the DATEDIF function.
=DATEDIF(A1, B1, [1] [2])
The DATEDIF function requires the start date, end date, and a unit in quotes. To get full months, use "M" as the unit. The second blank is a distractor and should be empty or ignored.
Fill all three blanks to create a formula that extracts the year, month, and day from the date in cell A1.
=YEAR([1]) & "-" & MONTH([2]) & "-" & DAY([3])
The YEAR, MONTH, and DAY functions each take a date cell as input. Using A1 for all extracts the parts from the same date.