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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors