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
lekkerbek
Helper IV
Helper IV

Help ignoring a slicer

Hi,

 

I have a question about ignoring a slicer.

 

I have a dim table which shows:

- customer code

- customer name

- customer group

 

Multiple customers can be part of 1 group or not (in that case it's blank).

 

I have a fact table which shows:

- customer code

- other data not important for this question

 

I created a report which shows all relevant data for a customer using a slicer which is based on customer name. Standard stuff.

 

I would like to add a table to the page which basically shows all customers that belong to the same group.

Obviously when I do that now I only see one line being the customer that I selected

When I edit interactions and remove the filter, it shows all customers.

 

The desired outcome should be something like this:

 

CleanShot 2024-10-23 at 13.50.03.png

 

Any ideas?

1 ACCEPTED SOLUTION
SamWiseOwl
Super User
Super User

Hi @lekkerbek 

 

The easiest way to do this is duplicate the customer and group column into a seperate table.

Don't join this on to your existing table and then put that in your slicer.

 

Then you can create a measure to filter the data.

Add the measure into your Filter Pane under Filters on this visual.

 

filter measure =
var curr =SelectedValue(table[duplicated customer group])

Return
IF( SelectedValue(table[original customer group]) = curr, "Y")

Then filter this to Y

SamWiseOwl_0-1729688035468.png

 


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

View solution in original post

2 REPLIES 2
SamWiseOwl
Super User
Super User

Hi @lekkerbek 

 

The easiest way to do this is duplicate the customer and group column into a seperate table.

Don't join this on to your existing table and then put that in your slicer.

 

Then you can create a measure to filter the data.

Add the measure into your Filter Pane under Filters on this visual.

 

filter measure =
var curr =SelectedValue(table[duplicated customer group])

Return
IF( SelectedValue(table[original customer group]) = curr, "Y")

Then filter this to Y

SamWiseOwl_0-1729688035468.png

 


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

Works like a charm. Thanks a million!

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