Scenario
I've two SP lists; list1 and list2
List1 contains name of 200 individual equipment ID with single column.
List2 contains their maintenance logs, having two columns equipment ID and maintenance date.
List2 item count will gradually increase day by day....
Requirement:
Creating a collection which contains equipment ID and their last maintenance date.
Present solution:
Create col1 with list1, 200 equipment IDs are captured
Create col2 with first column(column name EqID) of 200 equipment IDs from col1 and one empty column(column name LastDate).
Run Update function to load last maintenance date of individual equipment from list2 to LastDate column of col2 using combination of First,Sort,Filter functions.
The problem:
Sometimes rate limit exceeded error occurs.
I have checked in network tools, the update function creating unique network requests and I'm sure that's why PowerApps throwing this error.
I need help on this 🙏