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! Learn more

Reply
Budfudder
Helper IV
Helper IV

Linking Two Tables and Filtering Result

In the attached example, the EMPLOYEES table and the SALES table are linked by the EMPLOYEEID column in both. Both columns also have the EMPLOYEENAME column.

 

But when I drag the EMPLOYEENAME from both tables to use as a slicer, the EMPLOYEEID slicer from the EMPLOYEE table shows all (4) of the employees; the EMPLOYEEID slicer from the SALES table shows only 3; the 3 who actually appear in the SALES table.

 

So why, when I use the list from the EMPLOYEE table, does it not trim the list down to the employees who are present in the SALES table?

 

And how can I make that list (from the EMPLOYEE table) show only those employees in the SALES table?

 

Here's the example: Example.pbix

 

 

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

Hi @Budfudder ,

 


But when I drag the EMPLOYEENAME from both tables to use as a slicer, the EMPLOYEEID slicer from the EMPLOYEE table shows all (4) of the employees; the EMPLOYEEID slicer from the SALES table shows only 3; the 3 who actually appear in the SALES table.

 

So why, when I use the list from the EMPLOYEE table, does it not trim the list down to the employees who are present in the SALES table?


This is by design. The slicer would list all available unique items of that field you choosed from data table. It won't be filtered by any relationship, unless you apply filters later. As a workaround, you could create a calculated column in EMPLOYEE table, and add this column into "Page level filters".

Index =
IF (
    'EMPLOYEES'[EMPLOYEENAME]
        = LOOKUPVALUE (
            SALES[EMPLOYEENAME],
            'EMPLOYEES'[EMPLOYEENAME], 'EMPLOYEES'[EMPLOYEENAME]
        ),
    1,
    0
)

1.PNG

 

However, that case, all visuals on report page would be affected by the "Page level filters". In your scenario, I perfer to directly drag [EMPLOYEENAME] from SALES table into slicer.

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Budfudder ,

 


But when I drag the EMPLOYEENAME from both tables to use as a slicer, the EMPLOYEEID slicer from the EMPLOYEE table shows all (4) of the employees; the EMPLOYEEID slicer from the SALES table shows only 3; the 3 who actually appear in the SALES table.

 

So why, when I use the list from the EMPLOYEE table, does it not trim the list down to the employees who are present in the SALES table?


This is by design. The slicer would list all available unique items of that field you choosed from data table. It won't be filtered by any relationship, unless you apply filters later. As a workaround, you could create a calculated column in EMPLOYEE table, and add this column into "Page level filters".

Index =
IF (
    'EMPLOYEES'[EMPLOYEENAME]
        = LOOKUPVALUE (
            SALES[EMPLOYEENAME],
            'EMPLOYEES'[EMPLOYEENAME], 'EMPLOYEES'[EMPLOYEENAME]
        ),
    1,
    0
)

1.PNG

 

However, that case, all visuals on report page would be affected by the "Page level filters". In your scenario, I perfer to directly drag [EMPLOYEENAME] from SALES table into slicer.

 

Regards,

Yuliana Gu

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

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