March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
10 | |
6 | |
5 |
User | Count |
---|---|
29 | |
22 | |
20 | |
13 | |
10 |