My flow
Can someone shed some light on this please? "Apply to each" is not running if the return value from "List rows" is null.
Basically, I want it to create a new row if the return value is null but for some reason it skipped that action?
Hi @nicklimcs ,
One row one loop. If List Rows returns null, "Apply to each" will stop.
You can add a parallel condition to check if List rows is null, then add row.
empty(outputs('List_rows')?['body/value'])
Best regards,
Rimmon