Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
EricaK
Helper I
Helper I

Drillthrough also add as filter?

Hi there all! 

 

I'm working on a visualisation page with linediagrams. That page is a drillthrough from another page. 

On the overall page I select a name and use drillthrough.

On the drillthrough page I see the name pop up on the linediagrams, but also other names. I do know where that is coming from, because I use 2 different tables with names for the different pages. 

 

Question: can I make some kind of measure that looks like 

Filter = selectedvalue(table[name]) 

and post this in the filter of the visual, so only the right name pops up?

 

Extra explanation:

For this example I have three tables:

- table Saleslines with all individual saleslines. In this table are sales persons and sales responsible (there are multiple sales done where there is one sales responsible person (calculated column) but every sale individually can be done by the same person but also different persons)

- table employees for sales per person

- table employees for sales per responsible person (this is a literal copy table from the first)

 

In the main page I use the "table employees for sales per person". But when I drillthrough I only want to see the "sales per responsible person". 

The names are Identical as it is a copy. 


Looking forward to responses! Thanks in advance

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Create a sales person dimension table, e.g.

Sales Person =
DISTINCT (
    UNION (
        DISTINCT ( 'table1'[Sales Person] ),
        DISTINCT ( 'table2'[Sales Person] )
    )
)

Create one-to-many single direction relationships from this table to your other tables and then use the column from this new table in all of your visuals and in the drill through parameter.

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

Create a sales person dimension table, e.g.

Sales Person =
DISTINCT (
    UNION (
        DISTINCT ( 'table1'[Sales Person] ),
        DISTINCT ( 'table2'[Sales Person] )
    )
)

Create one-to-many single direction relationships from this table to your other tables and then use the column from this new table in all of your visuals and in the drill through parameter.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors