Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi Expert
see sample file
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?
Solved! Go to Solution.
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.
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.
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.
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
104 | |
94 | |
38 | |
30 |