Hello guys,
I have two Excel lists. One list comes from the colleague, the other one is for monitoring.
The list from the colleague should be searched for the column "Decision". Possibilities are "new", "delete", "update".
If the cell says "delete", I want to delete this row in the monitoring list.
Certain values may appear more than once in the monitoring list. Therefore I need to compare according to a key
(ID, project name, cost center).
The row with the ID, project name, cost center should be deleted in the monitoring list.
is it possible to specify multiple columns in the lead column? If so how do I separate the columns?

At the moment my flow looks like:
- first loop over the list from my colleague.
- case condition: "new", "delete", "update"
- case delete: loop over my monitoring list
- if condition: If ( ID, project name, cost center from the list of my colleague == ID, project name, cost center from the monitoring list)
- yes -> Delete row with the ID
This works so far but takes a long time. I suspect it is because of the two loops nested Applay to each.
Thank you for helping 🙂