Announcements
Sources:
1. Microsoft Learn – Manage Permission Scopes in SharePoint
2. Connecting Software – SharePoint Permission Limits
3. Stack Overflow – SharePoint Item-Level Access Performance
Set( gblUser, LookUp( ReferenceList, EmailAddress = User().Email ) )
gblUser.IsManager = "Yes"
Filter( YourMainList, Department = gblUser.Department )
Set( gbl2Weeks, Today() - 14 )
Filter( YourMainList, Department = gblUser.Department && Created >= gbl2Weeks )
Let me know if you’d like help building the folder-routing flow or setting up permissions. And if this helped or could help others in the community, feel free to give it a like or kudo — it helps surface useful answers for everyone!
Use a filter like:
EmployeeID eq '12345'
This will return matching items across all folders.
Set variable: varFolderPath = Department
/Lists/YourListName/varFolderPath/
concat('/Lists/YourListName/', variables('varFolderPath'), '/')
Summary
Can I check globally?
✅ Yes, Get items searches all folders
❌ No, use one condition + dynamic folder path
How to reference folders?
Use Folder Path or REST API with FileDirRef
Method: POST URL: https://yourtenant.sharepoint.com/sites/yoursite/_api/web/lists/getbytitle('YourList')/items Headers: Accept: application/json;odata=verbose Content-Type: application/json;odata=verbose Body: { "__metadata": { "type": "SP.Data.YourListItem" }, "Title": "Record Title", "Department": "Finance", "FileDirRef": "/sites/yoursite/Lists/YourList/Finance" }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 505
WarrenBelz 502 Most Valuable Professional
Haque 324