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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Select column 1 value and then filter table based on that data's column 2 value

My data looks like this :

 

IDNameType
1ZZZCar
2PPPBus
3AAACar
4RRRRCar
5AAAATrain

 

I have to give user the option to select IDs (I've used a slicer drop down) and based on the selection of ID

All the product of similar type need to be displayed. 

 

For example if user selects 3, output should be

 

IDNameType
1ZZZCar
3AAACar
4RRRRCar

 

Thanks!

1 ACCEPTED SOLUTION

@Anonymous

 

Please see attached file with your sample data

 

rwrew.png


Regards
Zubair

Please try my custom visuals

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

Try this technique

Assuming yoir Table's Name is Table1

First create a calculated table from Modelling Tab. This will be used as slicer

 

ID For Slicer = Values(Table1[ID])

Now create a Measure

 

Measure =
VAR selectedids =
    VALUES ( 'ID For Slicer'[ID] )
VAR myType =
    CALCULATETABLE (
        VALUES ( Table1[Type] ),
        FILTER ( ALL ( Table1 ), Table1[ID] IN selectedids )
    )
RETURN
    IF ( VALUES ( Table1[Type] ) IN myType, "Yes", "N0" )

Now Use this MEASURE as VISUAL filter


Regards
Zubair

Please try my custom visuals

@Anonymous

 

Please see attached file with your sample data

 

rwrew.png


Regards
Zubair

Please try my custom visuals

Thanks @Zubair_Muhammad  also helped me! What to change if I want to select two IDs at the same time?

Anonymous
Not applicable

Isn't it the same as SELECTEDVALUE finction ?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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