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 ...
Fowmy
Super User
5 years ago
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 š