Complete the formula to format the date in cell A1 as "MM/DD/YYYY".
=TEXT(A1, "[1]")
The format code "MM/DD/YYYY" shows the date as month/day/year, which is the requested format.
Complete the formula to display the date in cell B2 as the full month name, day, and year (e.g., "January 15, 2024").
=TEXT(B2, "[1]")
"MMMM" shows the full month name, "DD" the day, and "YYYY" the year, matching the example format.
Fix the error in the formula to show the date in C3 as "Day, Month DD, YYYY" (e.g., "Monday, January 15, 2024").
=TEXT(C3, "[1]")
In Excel, "dddd" gives the full weekday name. "DDDD" or "DDD" are not valid format codes.
Fill both blanks to format the date in D4 as "YY/MM/DD" and include the weekday abbreviation (e.g., "24/01/15 Mon").
=TEXT(D4, "[1]") & " " & TEXT(D4, "[2]")
"YY/MM/DD" formats the date as two-digit year/month/day. "ddd" gives the three-letter weekday abbreviation.
Fill all three blanks to create a formula that formats the date in E5 as "Month DD, YYYY at HH:MM AM/PM" (e.g., "January 15, 2024 at 03:30 PM").
=TEXT(E5, "[1]") & " at " & TEXT(E5, "[2]") & " [3]"
"MMMM DD, YYYY" formats the full month, day, and year. "hh:mm" shows hour and minute in 12-hour format. "AM/PM" adds the meridian indicator.