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 C4 or a function name will give wrong results.
Fill both blanks to create a formula that extracts the year and month from cell D5 and combines them as "Year-Month".
=YEAR([1])&"-"&MONTH([2])
Both YEAR and MONTH functions should reference the same date cell D5 to combine year and month correctly.
Fill all three blanks to create a formula that extracts year, month, and day from cell E7 and formats them as "YYYY/MM/DD".
=YEAR([1])&"/"&TEXT(MONTH([2]), "00")&"/"&TEXT(DAY([3]), "00")
All parts must reference the same date cell E7 to correctly format the date as YYYY/MM/DD with leading zeros for month and day.