Forum Discussion
MartinDUK
3 years agoNew Member
How do I Use Text from Cell Drill Down as Data Source and File location.
I have files in a Network Folder and have written a query to get the list of files from a Folder. Filtered the File name for the relevent file. Filtered the Latest file. Drilled down in the Cel...
AlienSx
3 years agoSuper User
create blank query, open it with Advanced Editor and literally write the following
let
// Source = Csv.Document(FilePath) - wrong!
Source = Csv.Document(File.Contents(FilePath))
in Source
what do you get?