- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Connecting to Folder but filtering by file name
Hello,
We are conecting to a folder which has multiple files -- basically 3 different file formats. Is there a way when we connect to the folder -- maybe going into 'Advanced' where it shows it in M code -- and filtering by specific file names? i.e. We have file names "Positions", "Transactions" and "Returns" all in the same folder. Only want to view where file names begin with 'Position' or end with .xls -- like filtering positions* or *.xls.
Thanks!
Dan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@dancarr22,
Add a custom column in Query Editor using the following formula, then filter the custom column to "Yes".
if Text.Contains([Name], "Equity") then "Yes" else "No"
You can review the example below.
Regards,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@dancarr22,
Change the code in your Advance Editor to the following:
let Source = Folder.Files("YouPath\folder"), #"Filtered Rows" = Table.SelectRows(Source, each ([Extension] = ".xls")) in #"Filtered Rows"
Then in Query Editor you are able to view only those files with .xls in Query Editor, there is an example for your reference.
Regards,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks! This is great -- answer 90% of my question.
One follow-up then will close this: how would I filter by file name instead of file extension -- i.e. All files that begin with or contain '%Equity%'.
Thanks for your assistance with this -- greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@dancarr22,
Add a custom column in Query Editor using the following formula, then filter the custom column to "Yes".
if Text.Contains([Name], "Equity") then "Yes" else "No"
You can review the example below.
Regards,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-12-2024 10:19 AM | |||
09-20-2024 04:46 AM | |||
11-15-2024 04:53 PM | |||
Anonymous
| 11-29-2020 08:30 AM | ||
10-21-2024 11:39 AM |
User | Count |
---|---|
33 | |
18 | |
14 | |
11 | |
10 |