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
jhd
Helper I
Helper I

Show filter of another column

 

To remind users of what filters (in this case, suppliers) they have selected, I use the following measure:

 
IF(
ISFILTERED(Golden_Suppliers[GROUP_SUPPLIER]),
CONCATENATEX(
FILTERS(Golden_Suppliers[GROUP_SUPPLIER]),
Golden_Suppliers[GROUP_SUPPLIER],", "),
"ALL"
)
 
 
The results of which are displayed within a card.
 
The table "Golden_Suppliers" looks like this:
 
GROUP_SUPPLIER            GID
Acme Corporation           ACM
Handmade Stuff              HAS
Things Innovative            THI
 
I frequency use the GID within visuals because they are more compact. The problem is that when a user uses a drillthrough based on the GID the above measure does not see that the Golden_Supplier table has been filtered and continues to show the result "ALL".
 
Is there a way to fix this?

 

Thanks, James

 

 

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @jhd 

You may try below measure:

Measure =
IF (
    ISFILTERED ( Golden_Suppliers[GROUP_SUPPLIER] )
        || ISFILTERED ( Golden_Suppliers[GID] ),
    CONCATENATEX (
        VALUES ( Golden_Suppliers[GROUP_SUPPLIER] ),
        Golden_Suppliers[GROUP_SUPPLIER],
        ", "
    ),
    "ALL"
)

1.png

Regards,

Community Support Team _ Cherie Chen
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

2 REPLIES 2
v-cherch-msft
Employee
Employee

Hi @jhd 

You may try below measure:

Measure =
IF (
    ISFILTERED ( Golden_Suppliers[GROUP_SUPPLIER] )
        || ISFILTERED ( Golden_Suppliers[GID] ),
    CONCATENATEX (
        VALUES ( Golden_Suppliers[GROUP_SUPPLIER] ),
        Golden_Suppliers[GROUP_SUPPLIER],
        ", "
    ),
    "ALL"
)

1.png

Regards,

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

Thanks @v-cherch-msft !

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.