Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
We are computing a measure value and using floor to remove decimal places. Only when the value is 5 it is displayed as 5.0. We are building a generic table and hence measure value can have different data type. But the computation logic for 1 type is same and we are expecting the same format.
It behaves normal When I add zero to it
Measure_Value+0 as Measure_Value
Can Anyone show how I need to debug this issue or should I raise a support ticket for same. We are using Sense November 2022 Client Managed,
Floor(5) and Floor(5.1) both return 5 on my end, formatted without a decimal point.
As this seems to be a formatting issue, you could just use num() to format the result explicitly.