Hi @rik_TP ,
To filter documents in a SharePoint document library gallery to show only items from a specific folder (e.g., "Scheduling"), you need to use the 'Filter' function in Power Apps.
Here's an example formula you can use in the Items property of your gallery:
Filter(
'YourDocumentLibraryName',
StartsWith(FolderPath, "/sites/YourSiteName/Shared Documents/Scheduling")
)
Replace 'YourDocumentLibraryName' with the actual name of your document library, and 'YourSiteName' with the name of your SharePoint site.
StartsWith(FolderPath, "/sites/YourSiteName/Shared Documents/Scheduling") is the condition. It filters items where the 'FolderPath' starts with the specified path. Adjust the path according to your SharePoint site structure.
Make sure to adapt the paths based on your actual SharePoint site structure. This should help you narrow down the results to only show documents in the "Scheduling" folder.
Thanks!!!
Please consider marking my response as the accepted solution if it successfully resolves your concern. If you found the information beneficial in other aspects, kindly express your appreciation by giving it a thumbs-up.