Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
14 | |
11 | |
8 |
User | Count |
---|---|
24 | |
19 | |
12 | |
11 | |
10 |