Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
This is a completicated request so please see attached pbix file and query is also written inside the file.
Please this is an urgent request.
Thanks in advance.
Solved! Go to Solution.
Found a solution on an another forum:
Found a solution on an another forum:
Hi @mb0307 ,
First create a slicer table as below:
Slicer Table = DISTINCT('Date'[Week number])
Then create a measure as below:
Measure =
var _maxmonth=CALCULATE(MAX('Date'[Month Number]),FILTER(ALL('Date'),'Date'[Week number]=SELECTEDVALUE('Slicer Table'[Week number])))
Return
IF(MAX('Date'[Month Number])<_maxmonth,"WK"&MAXX(FILTER(ALL('Date'),'Date'[Month Name]=MAX('Date'[Month Name])),'Date'[Week number]),"WK"&SELECTEDVALUE('Slicer Table'[Week number]))
Finally you will see:
For details,pls see attached.
@v-kelly-msft Thanks for looking into my request.
Your DAX doesn't sum the Forecast by Months and Week Numbers are applied too all the months based on slicer selection.
I have recreated the pbix file with more clear request, please see the link in original post.
Thanks once again - please let me know if you have any queries.
Hi @mb0307 ,
Create a measure as below:
Measure =
var _maxmonth=CALCULATE(MAX('Date'[Month Number]),FILTER(ALL('Date'),'Date'[Week number]=SELECTEDVALUE('Slicer Table'[Week number])))
var _maxweeknumber=CALCULATE(MAX('Date'[Week number]),FILTER(ALL('Date'),'Date'[Month Number]=MAX('Date'[Month Number])&&'Date'[Month Number]<_maxmonth))
Return
IF(MAX('Date'[Month Number])<_maxmonth,CALCULATE(SUM(Final_FC[Forecast]),FILTER(ALL('Date'),'Date'[Week number]=_maxweeknumber)),
CALCULATE(SUM(Final_FC[Forecast]),FILTER(ALL('Date'),'Date'[Week number]=SELECTEDVALUE('Slicer Table'[Week number]))))
And you will see:
For the modified .pbix file,pls see attached.
Thanks a lot for looking into my request and sending me the pbix, but this is not the what I am looking for.
Sorry if I wasn't clear in explaining the output. This is what I want the output to look like:
The pbix I provided is not with the complete dataset. In the original dataset I have all the week in a year but I want the result to be based on the MAX Week of the month.
Thanks in advance.
Manoj
Can someone help with the query please?
@mb0307 , Can you please explain the requirement. Or is it written inside pbix ?
Thanks for your reply - much appreciated.
requirement is written inside pbix.
Thanks.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
88 | |
83 | |
64 | |
49 |
User | Count |
---|---|
127 | |
108 | |
87 | |
70 | |
66 |