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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Joe_100
Helper I
Helper I

Table visual automatically select multiple values

Hi all,

 

Maybe it's possible, maybe not. I have the following question:

 

I have a table that looks a bit like this.

 

Company      Name                  ID

Test1             John                     100

Test2             Joe                       100

Test1             Testname             101  

 

I have a table visual where i can select the name value.

What i want is that when i select the value John with id 100 it also automatically grabs Joe with id 100.

 

Is there a possibilty in Powerbi for what i want?

 

Many thanks all!

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Joe_100,

 

Please check out a demo here.

1. Create a new table full of names.

Table = VALUES(Table1[Name])

2. Establish relationship. Modify the relationship to 1:* and single filter direction.

3. Create a measure.

Result =
VAR selected_id =
    CALCULATE (
        IF ( HASONEVALUE ( 'Table'[Name] ), MIN ( Table1[ID] ), BLANK () ),
        ALL ( Table1[Company], Table1[Name] )
    )
RETURN
    CALCULATE (
        IF ( MIN ( 'Table1'[ID] ) = selected_id, 1, BLANK () ),
        ALL ( Table1 )
    )

Table_visual_automatically_select_multiple_values

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Joe_100,

 

Please check out a demo here.

1. Create a new table full of names.

Table = VALUES(Table1[Name])

2. Establish relationship. Modify the relationship to 1:* and single filter direction.

3. Create a measure.

Result =
VAR selected_id =
    CALCULATE (
        IF ( HASONEVALUE ( 'Table'[Name] ), MIN ( Table1[ID] ), BLANK () ),
        ALL ( Table1[Company], Table1[Name] )
    )
RETURN
    CALCULATE (
        IF ( MIN ( 'Table1'[ID] ) = selected_id, 1, BLANK () ),
        ALL ( Table1 )
    )

Table_visual_automatically_select_multiple_values

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.