Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello, i am looking for a DAX formula that combines divide and round, in example i ha tried round(divide(table1[cases],table1[cases per pallet],0) but it gives me an errors
Thank you for your help
Solved! Go to Solution.
Do you use this as a measure? This will not work. You use columns without a minx,maxx or sumx...
Or do you use it as a calculated column?
Proud to be a Super User!
round(divide(table1[cases],table1[cases per pallet],0) a bracket is missing.
round(divide(table1[cases],table1[cases per pallet]),0)
Proud to be a Super User!
Hi, @EugenioBeltran
You can try the following methods.
Sample data:
Measure = ROUND(DIVIDE(SELECTEDVALUE('Table'[Cases]),SELECTEDVALUE('Table'[Cases per pallet])),0)
Measure 2 = ROUND(DIVIDE(SUM('Table'[Cases]),SUM('Table'[Cases per pallet])),0)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @EugenioBeltran
You can try the following methods.
Sample data:
Measure = ROUND(DIVIDE(SELECTEDVALUE('Table'[Cases]),SELECTEDVALUE('Table'[Cases per pallet])),0)
Measure 2 = ROUND(DIVIDE(SUM('Table'[Cases]),SUM('Table'[Cases per pallet])),0)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
round(divide(table1[cases],table1[cases per pallet],0) a bracket is missing.
round(divide(table1[cases],table1[cases per pallet]),0)
Proud to be a Super User!
It we works if I do =[cases]/[cases per pallet] but it does not work when I add round([cases]/[cases per pallet],0)
Do you use this as a measure? This will not work. You use columns without a minx,maxx or sumx...
Or do you use it as a calculated column?
Proud to be a Super User!
I use it as a measure, , row by row