Rounding Off Floating Point Numbers To Integer Using DAX In Power BI
Hi,
Just sharing a simple DAX formula to round off floating point numbers to int.
First, you have to use the Round() function passing in the table column as the first parameter and 0 which means no trailing zeroes in the second parameter. Then cast that number to an integer type using the Int() function.
Cheers!
Just sharing a simple DAX formula to round off floating point numbers to int.
AvgDayToPayRnd = Int(ROUND(AccountsReceivablesAging[AvgDayToPay], 0))
Cheers!
Comments
Post a Comment