Complete the code to format the measure as currency with two decimals.
Formatted Sales = FORMAT(SUM(Sales[Amount]), [1])Using "$#,##0.00" formats the number as currency with two decimal places.
Complete the code to format the date as day-month-year.
Formatted Date = FORMAT(Sales[Date], [1])The format string "DD-MM-YYYY" displays the date as day-month-year.
Fix the error in the code to format the percentage with one decimal place.
Formatted Percentage = FORMAT(Sales[Percent], [1])The format string "0.0%" formats the number as a percentage with one decimal place.
Fill both blanks to format the sales amount with thousand separator and no decimals.
Formatted Sales = FORMAT(SUM(Sales[Amount]), [1] & [2])
Concatenating "$" and "#,##0" formats the number with a dollar sign and thousand separators without decimals.
Fill all three blanks to format the average discount as a percentage with no decimals and add a custom text suffix.
Formatted Discount = FORMAT(AVERAGE(Sales[Discount]), [1]) & [2] & [3]
Using "0%" formats the number as a percentage with no decimals. Adding a space " " and the text " off" creates a readable suffix like "25% off".