I have two tables
Dim_Operation
Fact_CallDetails
The Fact_Details table contains the operation field with comma separated list of values. I would like to create two table visuals one for Dim_Operation and another for Fact_CallDetails. Once I click on the operation row of the Dim_Operation table, I want the Fact_CallDetails table to be filtered containing the operation phrase.
Lets take some example
Selecting GET from the Dim_Operation table will return row 1 and row 5.
Selecting PUT from the Dim_Operation table will return row 1 and row 3.
Any suggestion how can I achieve this.
Solved! Go to Solution.
Hi @subhendude
Please place this measure in the filter pane of the fact table, select "Is not blank" and apply the filter
Filter Measure =
COUNTROWS (
FILTER (
ALLSELECTED ( Dim_Operation[Operation] ),
CONTAINSSTRING (
SELECTEDVALUE ( Fact_CallDetails[Operation] ),
Dim_Operation[Operation]
)
)
)
Hi @subhendude
Please place this measure in the filter pane of the fact table, select "Is not blank" and apply the filter
Filter Measure =
COUNTROWS (
FILTER (
ALLSELECTED ( Dim_Operation[Operation] ),
CONTAINSSTRING (
SELECTEDVALUE ( Fact_CallDetails[Operation] ),
Dim_Operation[Operation]
)
)
)
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
238 | |
52 | |
48 | |
45 | |
42 |
User | Count |
---|---|
282 | |
211 | |
82 | |
76 | |
75 |