FIXED DAX Function in Power BI

The Fixed DAX function rounds a number to the specified number of decimals and returns the result as text. We can specify that the result be returned with or without commas.

DAX Syntax FIXED(Number, [Decimals], [no_commas])

The function has the following parameters:

Example: Let’s create a calculated column with name “FIXED column”.

DAX

FIXED column = FIXED('Table Decimals'[Decimals],1)

The output of the above dax code is shown below:

FIXED dax function in Power BI

Here, note that the “Decimals” column is a Numeric column, and “FIXED column” is a Text type column.