Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Target Sales Percentage based on Store ID in DAX

Hello All,

I have the below data set for sales for which I am trying to get a percentage of sales in measure.

 

Store IDSales DateDaily salesTotal Employees
1011/1/202159
1011/1/202189
1011/1/2021109
1021/1/2021711
1021/1/2021511
1021/1/20211111
1021/1/2021811
1021/1/20211211

 

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,


 

1 REPLY 1
amitchandak
Super User
Super User

@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]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors