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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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







Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

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







Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
SanketBhagwat
Solution Sage
Solution Sage

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors