I want to send an email to myself when a backed looped workflow has finished. What condition do I need to add? The loop finishes when thing:count>1
I tried thing:count is 0 but this didn’t work
I want to send an email to myself when a backed looped workflow has finished. What condition do I need to add? The loop finishes when thing:count>1
I tried thing:count is 0 but this didn’t work
Whatever condition you use to reschedule the workflow, just use the opposite of that to send the email.
For example, if you reschedule your workflow when list count > 1
(i.e. it will not reschedule when there is only 1 thing left in the list), then you would use the condition when list count is 1
to send the email.
Thank you as always @adamhholmes
This topic was automatically closed after 70 days. New replies are no longer allowed.