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

Page filter to apply to unlinked tables?

Hi, I am building a dashboard and have 4 tables that are all linked based on a unique ID. My page filter works fine for these, and I am using the "parent category" column on each of these tables to filter them. I have a fifth table which is a stand-alone table and not linked to any others (except the calendar table based on the date)

 

This fifth table also has the "parent category" column containing the exact same fields as the others however I want to somehow have this column filter when the page filter changes. I hope this makes sense? 

 

I appreciate any help!

1 ACCEPTED SOLUTION

Hi @JD0963,

 

Please take a look at below sample file which include use measure as filter tag.

 

Formula:

Tag =
VAR current_category =
    LASTNONBLANK ( T5[Category], [Category] )
RETURN
    IF ( current_category IN ALLSELECTED ( T1[Category] ), "Y", "N" )

 

10.PNG

 

9.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

Hi @JD0963,

 

Power bi use relationship to achieve cross filter effect. If fifth table not has any relationship to other tables, it is impossible to direct apply filter effect on it.

 

For your requirement, I'd like to suggest you create a measure to check current column(fifth table) and all selected columns, then return tag as result. Finial, drag this measure to visual level filter of visuals who based on fifth table, filter true result tag to apply the filter effect.

 

Tag measure:

Tag =
VAR current_category =
    LASTNONBLANK ( table5[parent category], [parent category] )
RETURN
    IF ( current_category IN ALLSELECTED ( table[parent category] ), "Y", "N" )

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Hi, I created this measure and when I add it to table5 visual level filters - i can't do anything with it? I can't select true or false?

Hi @JD0963,

 

Please take a look at below sample file which include use measure as filter tag.

 

Formula:

Tag =
VAR current_category =
    LASTNONBLANK ( T5[Category], [Category] )
RETURN
    IF ( current_category IN ALLSELECTED ( T1[Category] ), "Y", "N" )

 

10.PNG

 

9.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.