Forum Discussion
How to get specific rows from multiple excel files
- 6 years ago
Try this on for size. I made some assumptions about your data... If you need something different just repost.
Getting Shop List from Excel Workbooks and Sheets
Thanks,
John
Can you upload some sample workbooks?
- JohnThomas6 years agoHelper II
Try this on for size. I made some assumptions about your data... If you need something different just repost.
Getting Shop List from Excel Workbooks and Sheets
Thanks,
John
- JohnThomas6 years agoHelper II
This seems rather simple. Can't you just filter your column to anything with the word "Shop" or "List" in it? Or are the Shop 1, Shop 2, etc. realy some other names?
= Table.SelectRows(#"Previous Step", each Text.Contains([ShopList], "Shop") or Text.Contains([ShopList], "List"))
Is the data in a table, or just raw data in worksheets?
Is there a column header? Are you needing to know how to filter the list, or is the real problem combining all the sheets and files together into one table with all shops?
It will help structure a good solution to your problem if your sample data is as close to real as you can get it.