Complete the formula to format the date in cell A1 as "MM/DD/YYYY" using the TEXT function.
=TEXT(A1, [1])The TEXT function requires the format code as a text string, so it must be enclosed in quotes.
Complete the formula to format the number in cell B2 as currency with two decimal places.
=TEXT(B2, [1])The format code "$0.00" formats the number as currency with a dollar sign and two decimals.
Fix the error in the formula to format the time in cell C3 as hours and minutes (HH:MM).
=TEXT(C3, [1])In Excel time format codes, lowercase "h" or uppercase "H" is for hours, lowercase "m" is for minutes. "MM" means months, so use "hh:mm".
Fill both blanks to format the number in D4 as a percentage with one decimal place.
=TEXT(D4, [1] & [2])
To format as percentage with one decimal, combine "0.0" and "%" as text strings.
Fill all three blanks to format the date in cell E1 as full month name followed by year, e.g., "January 2024".
= [1](E1, [2]) & " " & [1](E1, [3])
The TEXT function is used twice: TEXT(E1, "MMMM") for the full month name and TEXT(E1, "YYYY") for the year, joined by a space.