Forum Discussion
Drillthrough based on disconnected table
I have a model where there is a fact table of transactions, a date table (related to fact table), and a disconnected date table (used for filtering). The model structure is like the below:
I have a report page filtered by the Disconnected Date Table. I have a second page for drill-through. I would like the drill-through to filter both for the selected account as well as the month of the trx date equal to the month of the selected value from the disconnected date table. I am stuck on the latter... I have posted a mocked up dummy pbix here. I appreciate any suggestions you may have.
Thanks!
4 Replies
- bcdobbsCommunity Champion
You need to pick the filter that gets passed up and "manually" apply it to the visual.
I wrote the following measure:VisualFilter = VAR SelectedMonthEnd = SELECTEDVALUE ('DisconnectedDate'[MonthEndDate] ) VAR Result = CALCULATE ( INT ( NOT ( ISEMPTY ( Transactions ) ) ), 'Date'[MonthEndDate] = SelectedMonthEnd ) RETURN Result
It reads the selected month end from the filter context and then checks if the transaction table is empty when MonthEndDate gets filtered by it. The NOT flips the logic found so it returns TRUE when there are records and then INT turns it to a 1/0.
Which can then be placed in the visual filter on your drill through page set equal to 1:- bcdobbsCommunity Champion
Same idea but following would be more flexible if multiple months were selected:
VisualFilter = VAR SelectedMonthEnds = TREATAS ( VALUES ('DisconnectedDate'[MonthEndDate] ), 'Date'[MonthEndDate] ) VAR Result = CALCULATE ( INT ( NOT ( ISEMPTY ( Transactions ) ) ), SelectedMonthEnds ) RETURN Result - AnonymousNot applicable
bcdobbs Thank you so much for your suggestion! I tried the first one:
VisualFilter =VAR SelectedMonthEnd = SELECTEDVALUE ('DisconnectedDate'[MonthEndDate] )VAR Result =CALCULATE (INT ( NOT ( ISEMPTY ( Transactions ) ) ),'Date'[MonthEndDate] = SelectedMonthEnd)RETURN ResultI put that measure on a card and saw that it does accurately change 1/0 based on selection. However, when I added it as a filter on the drillthrough visual, the drillthrough did not filter correctly. When a date is selected from the slicer, the drillthrough is blank. Do you have any suggestions?- bcdobbsCommunity Champion
Can you share your updated pbix. Will have a look.