Forum Discussion
Anonymous
4 years agoNot applicable
Rounding in table
Hi,
I would like to round numbers to the closest 10 or 100 in a table in PBI desktop visualization table (not in the data). I found it possible to have no decimals, however not to round to closest 10 or 100. I am starting to suspect that it is not possible?
1 Reply
- amitchandakSuper User
Anonymous ,
Switch(true(),
[measure] < 100, roundup([measure],1) ,
roundup([measure],2)
)