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 close...
amitchandak
4 years agoSuper User
Anonymous ,
Switch(true(),
[measure] < 100, roundup([measure],1) ,
roundup([measure],2)
)