The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
80 | |
71 | |
52 | |
50 |
User | Count |
---|---|
129 | |
123 | |
78 | |
64 | |
60 |