Final answer:
The DAX FORMAT function will format the given number as (5.00). The correct option is 2.
Step-by-step explanation:
The DAX FORMAT function allows you to apply custom formatting to numbers in Power BI. In the given DAX expression, FORMAT(-5, "#,##0.00;(#,##0.00)") the number -5 will be formatted according to the provided string format.
- The format contains a positive pattern "#,##0.00" which formats a positive number with commas as thousand separators and two decimal places. Therefore, the positive value 5 will be formatted as 5.00.
- The format also contains a negative pattern "(#,##0.00)" which formats a negative number with parentheses and the same comma and decimal formatting. Therefore, the negative value -5 will be formatted as (5.00).
So, the correct result for the given DAX expression is option 2) (5.00).