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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Use table array to filter column

Hi

 

My data was flattened out of structure when I imported into Power BI, I want to create a query that filters out the unneeded data.

 

I have a column of data which in the live formats like this:

1.

   1.1

       1.2

but in BI formats like this:

1.

1.1

1.2

meaning that I cannot filter by 1. becuse I loose all the data in 1.1 and 1.2

I have created a table array in Excel that includes all the sub numbers and what categories they refer to. 

 

I think what needs to happen is something like this that covers all my data: 

FILTER(
('MainTable'[category column]),
'ArrayTable' IN { "NUMBER LIST" }

 

2 REPLIES 2
jennratten
Super User
Super User

Hello - this is how you can filter a table by a list of values in Power Query...

Table.SelectRows(#"Prior Step", each List.Contains(myListName, [MyColumnName]))

 

If this post helps to answer your questions, please consider marking it as a solution so others can find it more quickly when faced with a similar challenge.

Proud to be a Microsoft Fabric Super User

Anonymous
Not applicable

Hi,
Still new to some of the terminology, so just a little check for me to make sure I am doing this correctly.

"Prior step" refers to what?
myListName = the list I am using to search for values

myColumnName = the column the values I am search for are in

which gives me this so far: 

Table.SelectRows(#"Prior Step", each List.Contains(IDList, [data.categoryid]))

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors