Hi,
We are experiencing an issue with a user not being able to see their latest entries in the gallery. Some details below:
1. I have been able to confirm that entries they have submitted via the form have been added to the SharePoint Online list.
2. Other users are not experiencing the same issue and are able to see their latest entries immediately.
3. The filter on the gallery is below
FirstN(
With(
{wList: Filter('RAC Activities',
'Created By'.Email = User().Email &&
(ddService.Selected.Result = "All" || 'RAC Service'.Value = ddService.Selected.Result
&& ddActivity_1.Selected.Result = "All" || Activity.Value = ddActivity_1.Selected.Result))
},
SortByColumns(wList,"Created",SortOrder.Descending)), 100)
4. The clear collects onvisible on the gallery page are below
ClearCollect(RecentItems, FirstN(Sort(Filter('RAC Activities', Created <= Now() && 'Created By'.Email = User().Email), Created, SortOrder.Descending), 100));
ClearCollect(colRAC, {Result:"All"}); Collect(colRAC, Sort(ForAll(Distinct('RAC Activities','RAC Service'.Value), {Result: ThisRecord.Value}),Result));
ClearCollect(colActivity, {Result:"All"}); Collect(colActivity, Sort(ForAll(Distinct('RAC Activities',Activity.Value), {Result: ThisRecord.Value}),Result));
5. Note, that colRAC is only returning 9 rows where it should return much more.
Any advise would be greatly appreciated!