Very simple, below is the source file code to pull CSV files from a folder. I want to pull files of whichever date that contain a specific text string.
For instance the file path is : C:\Users\Sebs\Desktop\Professional Clients\Tradmarket\Data\EquitiesExecuted_05-03-2019_to_05-03-2020.txt
I want to change this so it pulls only the files that have the word "EquitiesExecuted" regardless of the rest of the text string.
Source = Csv.Document(File.Contents("C:\Users\Sebs\Desktop\Professional Clients\Kau Markets\Data\CFDTradesExecuted_05-03-2019_to_05-03-2020.txt"),[Delimiter=",", Columns=60, Encoding=1252, QuoteStyle=QuoteStyle.None]),
Many thanks!