Forum Discussion
Import Excel/CSV from SharePoint with Metadata Filter
- 4 years ago
I was fortunate enough to be given this advice in another forum which is effective & efficient:
Step 1
Create a helper query MetaFileNameList that generates a list of file names based on the metadata
Step 2
Use that list to filter your query with SharePoint.Files or SharePoint.Contents, something like:Table.SelectRows( PrevStepName, each ( List.Contains( MetaFileNameList, [FileNameCol] ) =true ))
I was fortunate enough to be given this advice in another forum which is effective & efficient:
Step 1
Create a helper query MetaFileNameList that generates a list of file names based on the metadata
Step 2
Use that list to filter your query with SharePoint.Files or SharePoint.Contents, something like:
Table.SelectRows( PrevStepName, each ( List.Contains( MetaFileNameList, [FileNameCol] ) =true ))