avioti
8 years agoFrequent Visitor
DAX SUM/distinct(Count)
Hello Guys Could you help me pls? I have a table called sales and has column with total sales and another collumn code_sales. I would like to sum (total sales) and divide by the quantity of code...
- Anonymous8 years ago
Yes. You could do it all within:
Your Measure = DIVIDE( SUM('Sales'[Total_Sales]), DISTINCTCOUNT('Sales'[Code_Sales]) )