I have a RequestArray and ResponseArray. For each request there are about 20 responses.
In Power Automate I want to go through each request and find the responses relating to it. I get this error message.
The action 'Filter_RTBFResponsesArray_for_Validation_Teams' was executed for '291' iterations resulting in an aggregated result size that exceeded the maximum value '209715200' bytes allowed. Please reduce the number of iterations to ensure that the aggregated results size is less than '209715200' bytes.
The filter condition for the responses array says
@and(
equals(item()?['RequestID'], items('Add_up_the_Total_Time_From_Team1_to_Team2')?['ID']),
equals(item()?['TeamType'],'Team I want'))
I've tried reducing the number of columns in both arrays.
What's the best way to deal with this error message?