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.
I need to find the sum of total sales by sales group so that I can compare what portion of the total sales each sales rep accounts for.
In the example below, I need the calculation for the group sales column but I also need to make sure that it groups by the Sales Group because there are other Sales Groups in the dataset
Employee | Sales Group | Sales | Group Sales | Portion of sales |
Bob | Sporting Goods | 15 | 50 | 30% |
Jane | Sporting Goods | 15 | 50 | 30% |
John | Sporting Goods | 20 | 50 | 40% |
Solved! Go to Solution.
you can try to create two columns
Column = CALCULATE(sum('Table'[Sales]),ALLEXCEPT('Table','Table'[Sales Group]))
Column 2 = 'Table'[Sales]/'Table'[Column]
Proud to be a Super User!
you can try to create two columns
Column = CALCULATE(sum('Table'[Sales]),ALLEXCEPT('Table','Table'[Sales Group]))
Column 2 = 'Table'[Sales]/'Table'[Column]
Proud to be a Super User!
@ryan_mayu Thats perfect!
Got another one for you.
How would I determine the average sales per sales group? I'd like to compare their sales to the average.
is this what you want?
average = 'Table'[Column]/CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[Sales Group]))
Proud to be a Super User!
User | Count |
---|---|
77 | |
75 | |
36 | |
31 | |
29 |
User | Count |
---|---|
94 | |
80 | |
55 | |
48 | |
48 |