Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
SivaMani
Resident Rockstar
Resident Rockstar

Page level filter - Filter a table with 100+ values

Hello folks,

 

I have a situation that I have to filter 100+ value on a table.

  1. I had a look at the Power Query(List.Contains). It won't help in my case
  2. The column that I'm trying to filter has 250+ unique values

Please do help me with this. Thanks in advance

6 REPLIES 6
AlB
Community Champion
Community Champion

Hi @SivaMani,

It would help if you show a sample of your data. Try this:

1. Get the 100+ values you want to use for filtering in a one-column table. Let's assume we name it

AuxTable[Values]

2. Create a new calculated table by filtering the original table using that auxiliary table:

NewTable =
FILTER ( Table1, Table1[ColumnToFilter] IN DISTINCT ( AuxTable[Values] ) )

   

SivaMani
Resident Rockstar
Resident Rockstar

@AlB ,

I don't want to create a new table since I'm using a direct query mode. And it equivalent to creating a view in my backend.

 

I'm using M query to set a flag for the same and Filtering the flag field in the report.

hi, @SivaMani 

In power query, you could try this way:

Get the 100+ values you want to use for filtering in a one-column table.

Then click Convert to List as below:

13.JPG14.JPG

Now, use Power Query(List.Contains) to add a custom column( flag)

List.Contains(#"Category",[Category])

Then use this column to filter the data.

12.JPG

 

Best Regards,

Lin

 

 

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

@v-lili6-msft ,

 

Thanks for the response.

 

I implemented this approach. I'm looking for a similar option in the Page level filter. The problem here is, I have multiple pages with a different list of filters. So I concern about the performance if I follow this approach for all other pages.

hi, @SivaMani 

If you want a similar option in the Page level filter.

The best way is that

Just Get the 100+ values you want to use for filtering in a one-column table.

and  create a relationship with basic table and drag the value field from the 100+ values table into Page level filter and set is not blank.

 

Best Regards,

Lin

 

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

Hi @SivaMani 

 

If i understand correctly you are wanting to filter a table to only displays values greate than 100.

 

You can drag that field into a visual level filter and use the advanced filtering to say gretaer than 100

 

Hope this helps.

 

Thanks,

George

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors