Complete the code to format cell A1 as currency in Google Sheets.
Format cell A1 using the number format: [1]To format a cell as currency, use the format string "$#,##0.00" which shows the dollar sign and two decimals.
Complete the formula to convert the value in B2 to a percentage format in Google Sheets.
=TEXT(B2, [1])The format string "0.00%" converts a decimal number to a percentage with two decimal places.
Fix the error in the formula to display the date in cell C3 as "Month Day, Year" format.
=TEXT(C3, [1])The format string "mmmm d, yyyy" shows the full month name, day without leading zero, and four-digit year.
Fill both blanks to create a formula that formats the value in D4 as currency with two decimals and a comma separator.
=TEXT(D4, [1] & [2])
Combining "$" and "0.00" formats the number as currency with two decimals. The comma separator is included in the number format part.
Fill all three blanks to create a formula that formats E5 as a percentage with one decimal place and adds a space before the percent sign.
=TEXT(E5, [1] & [2] & [3])
"0.0" formats one decimal place, " " adds a space, and "%" adds the percent sign with a space before it.