Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 38 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 34 | |
| 33 | |
| 30 |