Forum Discussion
atin
Advocate III
5 years agoSimple DAX question - using the SUM & DIVIDE Function
Hi all
My question is how do I apply the DIVIDE FUNCTION to the calculation below as I want to divide Total Sales by 10,000
At the moment, it shows like this in my reports and I am getting the correct numbers -however I also want to apply the DIVIDE function to the calculation.
Total Sales =
(SUMX(Sales,
Sales[Order Quantity] * Sales[Unit Price] ) / 10000)
Many thanks
4 Replies
- Fowmy
Super User
Modify and try like this:Total Sales = DIVIDE( SUMX( Sales, Sales[Order Quantity] * Sales[Unit Price] ) / 10000 )________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂