Hi, I hope you can help me with this problem. I have a report where I’m manually defining release dates of SW products. We are interested in the number of new work items opened in 30 and 90 days after each release.
This part I managed, however now I need to be able to click on the 30-90 columns and drill through to work item details, to a list of work items from the selected date +30 or +90 days period. Right now it’s showing only one day, I need the whole period. Any help would be highly appreciated!
Thanks and let me wish to this wonerful community all the best into 2022!
Nik
I managed to solve your problem by using the technique of Dynamic Grouping.
I was searching for a way to filter your drill through page in order to have only the items that answer to your criteria.
The second problem was that you have three different date release that needs to work separately. That is why I’ve created three different grouping tables and three different measures.
The final step is the drill trough page. I also needed to create three different drill trough pages and apply for each the right filter.
Each time I allow drill through filter for the right “Groups” column of the right Dynamic Grouping table.
For example for the date release 1, I use “Groups” of Dynamic Grouping 1 and filter the measure “Nb Dynamic 1” to only show the items in the criteria
Thanks a lot @JBocher !
Your grouping approach is very interesting, and I will definitely spend time tonight to fully understand it. For now, as I have to present a working solution in the next 20 minutes, I came up with a similar approach. I have created 3 new drill through pages, but I use a less sophisticated solution with synced slicers and bookmarks and I’m filtering the details table with the following slicer (different measure for each table):
WorkItems R1 30d =
VAR ReferenceDate = SELECTEDVALUE(ReleaseDate1[Date])
VAR NextPeriod =
DATE ( YEAR ( ReferenceDate ), MONTH ( ReferenceDate ), DAY ( ReferenceDate ) + 30 )
It’s great to know that you are making progress with your query @nemethn. Please don’t forget if your question has been answered within the forum it is important to mark your thread as ‘solved’. We request you to kindly take time to answer the Enterprise DNA Forum User Experience Survey, We hope you’ll give your insights on how we can further improve the Support forum. Thanks!