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
LotteLaugesen
Helper V
Helper V

Calculating sum of Sales in a given period

Hi

 

I need to calculate sales per product from Expected selling start date and 4 month ahead.

How do I do that?

I have tried this measure, but it gives me an error.

 
Volume 4 Month =
CALCULATE(SUM('Fact Sales'[Volume]),
USERELATIONSHIP(Dim_Calendar[Date],'New Products'[Expected Selling Start Date]),
DATESBETWEEN(Dim_Calendar[Date],'New Products'[Expected Selling Start Date],DATEADD('New Products'[Expected Selling Start Date],4,MONTH)))
 
Can anybody help me?  I added a link to the test PBI file.
 
Below is a picture of what I would like to get.
 
New Products.JPG

Newbie Lotte 😊
 

 

1 ACCEPTED SOLUTION

I have changed the measure to this:

Volume 4 Month =
CALCULATE(SUM('Fact Sales'[Volume]),
DATESINPERIOD(Dim_Calendar[Date],MIN('New Products'[Expected Selling Start Date]),4,MONTH))
 
And now I get the corrrect result.
Thanks for your help 😊

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@LotteLaugesen , Try this

CALCULATE(CALCULATE(SUM('Fact Sales'[Volume]),
USERELATIONSHIP(Dim_Calendar[Date],'New Products'[Expected Selling Start Date])),
DATESINPERIOD(Dim_Calendar[Date ],Min(Dim_Calendar[Date])+1,4,MONTH) )

I have changed the measure to this:

Volume 4 Month =
CALCULATE(SUM('Fact Sales'[Volume]),
DATESINPERIOD(Dim_Calendar[Date],MIN('New Products'[Expected Selling Start Date]),4,MONTH))
 
And now I get the corrrect result.
Thanks for your help 😊
amitchandak
Super User
Super User

@LotteLaugesen , Try like

Volume 4 Month =
CALCULATE(SUM('Fact Sales'[Volume]),
USERELATIONSHIP(Dim_Calendar[Date],'New Products'[Expected Selling Start Date]),
DATESINPERIOD(Dim_Calendar[Date ],Min(Dim_Calendar[Date])+1,4,MONTH) )

Thank you for helping, but the measure shows a blank result.

amitchandak
Super User
Super User

@LotteLaugesen , not able to relate your comments with the with data, can you elaborate

For each product in New Products file I want sum of Volume from Fact Sales for 4 month after Expected selling start date. I only want to list the products in the New Products file, not any other product sold.

 

For Product100 it should sum volume from Fact Sales from 1st of January to end of 1st of April.

For Product200 it should sum volume from Fact Sales from 2nd of February to end 2nd of May

And so on.. Does this make it more clear?

 

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