Hey all, I'm noticing some odd behavior when trying to pull info from a SharePoint list connected gallery into a collection. The SP list contains contacts. The columns are Employee ID, Last Name, First Name, Group, Status and Cell phone number. Right now there are only 72 rows. I'm trying to create collections based on whether or not a user is a Field employee or Office employee. Users check a checkbox and the oncheck is set to:
ForAll(Gallery_Contacts.AllItems,
If((TI_Group.Text = "Field"),
Collect(FieldCellNumber, {Employee: TI_LastName.Text & ", " & TI_FirstName.Text, Cell: TI_Cell.Text })
))
The problem I am running into is that the Collection doesn't full populate. It seems to get part way through the gallery before it stops collecting data. There have been a few times where I was able to get it to fully populate after refreshing the data source several times, but that won't really fly when I want to publish this. Am I making a mistake in the Collect portion or should I be doing this some other way?