Complete the formula to extract the year from a date in cell A1.
=YEAR([1])The YEAR function extracts the year part from the date in cell A1.
Complete the formula to extract the month from a date in cell B2.
=MONTH([1])The MONTH function extracts the month part from the date in cell B2.
Fix the error in the formula to extract the day from a date in cell C3.
=DAY([1])The DAY function extracts the day part from the date in cell C3. Using the correct cell reference is important.
Fill both blanks to create a formula that extracts the year and month from cell D4 and combines them as Year-Month.
=YEAR([1])&"-"&MONTH([2])
Both YEAR and MONTH functions should reference the same cell D4 to extract year and month from the same date.
Fill all three blanks to create a formula that extracts year, month, and day from cell E5 and formats as YYYY/MM/DD.
=YEAR([1])&"/"&MONTH([2])&"/"&DAY([3])
All three functions YEAR, MONTH, and DAY should reference the same cell E5 to extract the date parts correctly.