FIXED is a DAX function that rounds a number to a specified number of decimal places and returns it as text with optional commas.
Syntax
FIXED(
Number,
Decimals,
NoCommas
)
Argument | Properties | Description |
---|---|---|
Number | The number you want to round and convert to text. | |
Decimals | Optional | The number of digits to the right of the decimal point; if omitted, 2. |
NoCommas | Optional | A logical value: if TRUE, do not display commas in the returned text; if FALSE or omitted, display commas in the returned text. |