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

Don'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.

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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