Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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!
Solved! Go to Solution.
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.
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.
It worked perfectly!!! Thank you so much!!