Complete the code to format the number in cell A1 as currency in Excel.
Select cell A1 and apply the [1] format.
To show a number as money, use the Currency format. It adds a dollar sign and two decimals.
Complete the formula to calculate 20% of the value in cell B2.
=B2 * [1]To calculate 20%, multiply by 0.2 (which is 20 divided by 100).
Fix the error in the formula to convert the text date in cell C3 to a proper date format.
=DATEVALUE([1])DATEVALUE needs a cell reference or text string representing a date. Using C3 (without quotes) passes the cell value.
Fill in the blank to create a formula that formats the value in D4 as a percentage with one decimal place.
=TEXT(D4, [1])The TEXT function uses "0.0%" to format as percentage with one decimal. The format code multiplies by 100 and adds the % sign.
Complete the formula to format the date in cell E1 as 'MM/DD/YYYY'.
=TEXT(E1, [1])Excel's TEXT function uses "mm/dd/yyyy": 'mm' for month, 'dd' for day, 'yyyy' for year.