Hi,
I have a sales report with sales numbers that shows all the sales from multiple vendors for 2022. I would like to create a report that shows me the percentage of total sales from only 2 specific vendors from a date range. I created a matrix table where I filtered my two vendors I want to look at. I have the 2022 total sales of those two vendors in one column and I created another measure to show total sales of All the vendors, so that I can divide the two to get me the % of total sales for those two vendors. The matrix I created shows me % of sales for all of 2022. Now I would like to do this same thing, but from a specific date range like the week of April 18-24. I would need the total sales of that week for those two vendors and the total sales of All the vendors for that week so i can find the percentage of total sales. Is that possible? Is there a dax for this?
Data set ex.
Solved! Go to Solution.
Hi @mlmagl14 ,
Your measures will be something like below but depends on how your dataset is modeled.
Sales From To =
CALCULATE (
SUM ( Table[Value] ),
DATESBETWEEN ( 'Table'[Date], DATE ( 2022, 4, 18 ), DATE ( 2022, 4, 22 ) )
)
Vendor Sales From To =
CALCULATE (
[Sales From To],
FILTER ( Table, Table[Vendor] = "Vendor 1" || Table[Vendor] = "Vendor 2" )
)
Percentage =
DIVIDE ( [Vendor Sales From To], [Sales From To] )
If you want your questions answered quickly and with better solutions, please read this post:
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523#M6071...
Hi @mlmagl14 ,
Your measures will be something like below but depends on how your dataset is modeled.
Sales From To =
CALCULATE (
SUM ( Table[Value] ),
DATESBETWEEN ( 'Table'[Date], DATE ( 2022, 4, 18 ), DATE ( 2022, 4, 22 ) )
)
Vendor Sales From To =
CALCULATE (
[Sales From To],
FILTER ( Table, Table[Vendor] = "Vendor 1" || Table[Vendor] = "Vendor 2" )
)
Percentage =
DIVIDE ( [Vendor Sales From To], [Sales From To] )
If you want your questions answered quickly and with better solutions, please read this post:
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523#M6071...
Hi @mlmagl14 .
If you want your data to filter by week range then you can create week number using =WEEKNUM('Date column') and then have it inside a slicer.
Thanks,
Sanket
If this post helps, then mark it as 'Accept as Answer' and give it a thumbs up.
@mlmagl14 , create a range based slicer on date and you can get it
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
102 | |
77 | |
70 | |
48 | |
47 |
User | Count |
---|---|
158 | |
86 | |
80 | |
68 | |
66 |