Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a field which is a product catalogue, I want to filter on a few hundred products but the only way I can see is to scroll through all 5124 products and tick each of the ones I want.
Is there a way of importing a list from Excel on to my report so only those products are displayed?
Thanks.
Solved! Go to Solution.
@MattN4 wrote:
Hi,
I have a field which is a product catalogue, I want to filter on a few hundred products but the only way I can see is to scroll through all 5124 products and tick each of the ones I want.
Is there a way of importing a list from Excel on to my report so only those products are displayed?
Thanks.
You can import the data table and filter table in Power BI. And then filter data table with filter table in Power Query.
Check
let
dataTable= Table.FromRows({{"Apple",10} , {"Peach",15},{"Cherry",20}}, {"category", "amount"}),
filterTable=Table.FromRows({{"Apple"} , {"Peach"}}, {"category"}),
filteredTable = Table.SelectRows(dataTable, each List.Contains( filterTable[category], [category] ))
in
filteredTable
@MattN4 wrote:
Hi,
I have a field which is a product catalogue, I want to filter on a few hundred products but the only way I can see is to scroll through all 5124 products and tick each of the ones I want.
Is there a way of importing a list from Excel on to my report so only those products are displayed?
Thanks.
You can import the data table and filter table in Power BI. And then filter data table with filter table in Power Query.
Check
let
dataTable= Table.FromRows({{"Apple",10} , {"Peach",15},{"Cherry",20}}, {"category", "amount"}),
filterTable=Table.FromRows({{"Apple"} , {"Peach"}}, {"category"}),
filteredTable = Table.SelectRows(dataTable, each List.Contains( filterTable[category], [category] ))
in
filteredTable
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |