Complete the formula to format the date in cell A1 as "MM/DD/YYYY".
=TEXT(A1, "[1]")
The format "MM/DD/YYYY" shows the month, day, and year in that order, separated by slashes.
Complete the formula to display the date in cell B2 as "Friday, January 1, 2021".
=TEXT(B2, "[1]")
"dddd" shows the full weekday name, "mmmm" the full month name, "d" the day without leading zero, and "yyyy" the full year.
Fix the error in the formula to show the date in C3 as "Jan 01, 2021".
=TEXT(C3, "[1]")
"mmm" shows the abbreviated month name, "dd" the day with leading zero, and "yyyy" the full year with commas as shown.
Fill both blanks to format the date in D4 as "2021-01-01 14:30" (24-hour time).
=TEXT(D4, "[1] [2]")
"yyyy-mm-dd" formats the date with dashes, and "HH:mm" formats the time in 24-hour format without AM/PM.
Fill all three blanks to format the date in E5 as "Saturday, 01-Jan-21".
=TEXT(E5, "[1], [2]-[3]-yy")
"dddd" shows full weekday name, "dd" shows day with leading zero, and "mmm" shows abbreviated month name. The year is shown as two digits with "yy".