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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors