Hi all,
Our team recently encountered the PowerApps 500/2000 data row limit and we've switched to using PowerAutomate to bring in a JSON String from Sharepoint List to PowerApps and using ParseJSON() to create collections of the tables.
After our QA, we've seen that our ClearCollect's are not populating some downstream collections in our app on some of our browsers.
Here is the code block in question:
ClearCollect(
NewCollection,
Filter(
ParseJSONCollection,
ProjectID = TextInputCanvas_ProjectID.Value,
DateTimeValue(Date) = DateTimeValue(
DateAdd(DatePickerCanvas_Date.SelectedDate, -1, TimeUnit.Days)
)
)
);
Here are the results:
Coworker 1, ClearCollect works on Chrome but not Edge
Coworker 2, ClearCollect works on Chrome but not Arc (another browser)
Coworker 3, ClearCollect works on Chrome and Edge
We've searched everywhere online for this behaviour and haven't seen anything related.
Any ideas or solutions are greatly appreciated, thanks.