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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Sales for the next 5 weeks from this week onwards

Hi Expert

 

see sample file

https://www.dropbox.com/scl/fi/c911zjealzrlczb51256f/Sales-Last-5-Weeks.pbix?rlkey=mztfqei79pmw9i8iu... 

 

How could calculate the sales for the next up coming 5 weeks based on the sample file. Without selecting a date on the data slicer?

 

1 ACCEPTED SOLUTION
v-tangjie-msft
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, here are my steps you can follow as a solution.

(1) My test data is the same as yours.

(2) If you want sales on that day five weeks in the future from the current date, you can create a measure:

Measure = CALCULATE(SUM('Table'[Sales]),FILTER(ALL('Table'),'Table'[date]=MAX('Table'[date])+35))

If you want total sales from the current date until the next five weeks, you can create a measure:

Measure 2 = CALCULATE(SUM('Table'[Sales]),FILTER(ALL('Table'),'Table'[date]>=MAX('Table'[date]) && 'Table'[date]<=MAX('Table'[date])+35))

(3) Then the result is as follows.

vtangjiemsft_0-1696921289889.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

1 REPLY 1
v-tangjie-msft
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, here are my steps you can follow as a solution.

(1) My test data is the same as yours.

(2) If you want sales on that day five weeks in the future from the current date, you can create a measure:

Measure = CALCULATE(SUM('Table'[Sales]),FILTER(ALL('Table'),'Table'[date]=MAX('Table'[date])+35))

If you want total sales from the current date until the next five weeks, you can create a measure:

Measure 2 = CALCULATE(SUM('Table'[Sales]),FILTER(ALL('Table'),'Table'[date]>=MAX('Table'[date]) && 'Table'[date]<=MAX('Table'[date])+35))

(3) Then the result is as follows.

vtangjiemsft_0-1696921289889.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors