Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Help to customise rounding numbers

Good afternoon, 

Could you please help me with this one, I'm trying to round up numbers, but I need that if they are greater than %.8 then go to the closest whole number and when %.7 then decreasing to the closest whole number:

 

14.74 = 14

14.80 = 15

 

Is there a Dax formula that can help me with this? 

Thank you so much! 

1 ACCEPTED SOLUTION
mjantune
Regular Visitor

You could do this

Uneven Round= IF(X - TRUNC(X) >=0.8 , ROUNDUP(X ,0) , ROUNDDOWN( X , 0 ) )

 

With X being the column you want to round unevenly. 

View solution in original post

2 REPLIES 2
mjantune
Regular Visitor

You could do this

Uneven Round= IF(X - TRUNC(X) >=0.8 , ROUNDUP(X ,0) , ROUNDDOWN( X , 0 ) )

 

With X being the column you want to round unevenly. 

Anonymous
Not applicable

It worked perfectly!!! Thank you so much!!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.