Forum Discussion

D3K's avatar
D3K
Advocate II
6 years ago
Solved

Bulk files upload from the folder

Hello everyone!   Got the question about uploading data into the system. I have the one folder in sharepoint with sales, stocks, etc. And when I use the filter in power query to upload only necces...
  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi D3K ,

    I'd like to suggest you replace accurate filter part with Text.Contains/Text.StartsWith function to check specific text string:

    #1:
    SelectRow= Table.SelectRows(Source, each [Folder Path]="https://xxxxxxxxxxxxx" and Text.Contains([Name],"Receipt"))
    
    #2:
    SelectRow= Table.SelectRows(Source, each [Folder Path]="https://xxxxxxxxxxxxx" and Text.StartsWith([Name],"Receipt"))
    

    Text.Contains

    Text.StartsWith

    Regards,

    Xiaoxin Sheng