The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello All,
I have the below data set for sales for which I am trying to get a percentage of sales in measure.
Store ID | Sales Date | Daily sales | Total Employees |
101 | 1/1/2021 | 5 | 9 |
101 | 1/1/2021 | 8 | 9 |
101 | 1/1/2021 | 10 | 9 |
102 | 1/1/2021 | 7 | 11 |
102 | 1/1/2021 | 5 | 11 |
102 | 1/1/2021 | 11 | 11 |
102 | 1/1/2021 | 8 | 11 |
102 | 1/1/2021 | 12 | 11 |
I want to have Perctenage KPI which calculates Store Total Sales / Total Employees. For example, for Store 101 my measure will return (5+8+10)/9 = 2.55 so on and so forth...
By default, I would like to have a value that returns data for all stores. In above example. All the sales will be summed (66) and then divided by (9+11) = 20 and the result should show as 3.3
Any guidance will be helpful.
Thanks,
@Anonymous , Try a measure like
divide(sum(Table[sales]), sumx(values(Table[Store ID]), calculate(max(Table[Total Employees]))))
or try like
averageX(summarize(Table, Table[Store ID] , "_1", sum(Table[sales]) , "_2",calculate(Max(Table[Total Employees]))), divide([_1],[_2]))
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |