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
MeMedesimo
New Member

Use same filter value for to separated tables

Hi there,

 

I am trying to create an interactive dashboard that will show 2 visuals once the user selected the desired filter.

 

Let's say I have the following two files loaded into PowerBi Desktop:

 

COUNTRYGENDERTOTAL COSTUMERS
USAM45
USAF65
UKM67
UKF86
FINLANDM23
FINLANDF21
SPAINM13
SPAINF15

 

and

 

COUNTRYAGE BANDTOTAL COSTUMERS
USAChild56
USAAdult75
UKChild34
UKAdult98
FINLANDChild23
FINLANDAdult45
SPAINChild65
SPAINAdult23

 

I am trying to create 2 visuals (one for GENDER and one for AGE BAND) and I would like to create a unique filter for COUNTRY so that once the user selects USA only, the 2 visuals updates automatically.

 

Unfortunately, I need to put both filters in the "Filters on this page" section to control both visuals, whereas I would like just to have one since the values in COUNTRY are the same, but due to the duplicates, I can't join.

 

Thanks

 

Simone

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Create a separate Country dimension table using

Country = DISTINCT( UNION(
   VALUES('Table1'[Country],
   VALUES('Table2'[Country]
))

create relationships from the new table to both existing tables and then place your filter on the new table.

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

Create a separate Country dimension table using

Country = DISTINCT( UNION(
   VALUES('Table1'[Country],
   VALUES('Table2'[Country]
))

create relationships from the new table to both existing tables and then place your filter on the new table.

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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