Hi,
I've added a Boolean field to my SharePoint Document Library called 'IsProject' and set it to true for one folder.
I'm then trying to load just this record into my app using the following filter:
Filter(Documents,IsProject=true)
This filter returns no results even though there is one folder that fits the criteria.
If instead I first load all documents into a collection and then use the same filter, this works. For example:
//Collect Button
ClearCollect(DocCollection,Documents)
//Gallery Items
Filter(DocCollection,IsProject=true)
I'm trying to avoid loading everything into a collection first and want to do the query directly on SharePoint.
Anyone have any ideas?
Sam