The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!!