cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
mlmagl14
Helper I
Helper I

How to get total sales in a date range

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?

 

Sales.jpg

 

Data set ex.

data set.jpg

1 ACCEPTED SOLUTION
danextian
Super User
Super User

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








Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Connect to me on LinkedIn || Need consulting? Hire me for a Power BI gig on UpWork.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

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








Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Connect to me on LinkedIn || Need consulting? Hire me for a Power BI gig on UpWork.
SanketBhagwat
Super User
Super User

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.

amitchandak
Super User
Super User

@mlmagl14 , create a range based slicer on date and you can get it

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

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!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors