Forum Discussion
Suzie_Suze_Sue
3 years agoNew Member
MROUND - Rounding to the nearest 5
Good afternoon, Having an issue with MROUND. I have a table with college courses, and would like to look at the FTE for each institution and course, how ever it doesn't seem to like "the value for ...
FreemanZ
Super User
3 years agoyou would need a measure like this:
measure =
VAR _sum = SUM(TableName[FTE])
RETURN
MROUND(_sum, 5)
with the sample data you provided in the original post and changing 5 to 2, it worked like this:
p.s. please consider @someone, if you seek further suggestions.
Suzie_Suze_Sue1
Helper I
3 years agoPerfect!! Thank you