Hello, I've got a bit of a head scratcher with this one. When it comes to capturing errors inside my workflow, I use the 'On error' function inside the the actions that will create a variable with the error message I need and then run a sub-workflow to send an email with the error. These are treated as failed and the workflow can't carry on.
However, I also need to capture warnings in the same way my current workflow is capturing errors as above, with using the 'On error' function create a variable of the warning then run a sub-workflow to put that warning variable in a txt file so later then go back to the point of when it failed and carry on. What makes it more difficult is there couple be multiple warnings so I can't use the same variable as it will be overwritten. Hence why it is placed in a txt file for every waring that is captured.
An example of what I'm trying to do is, when entering a form online there are required text fields. If the automation workflow can't enter in a required field then it will error as it can't progress on. But if it can't enter in other fields that are not required, I need to capture what fields can't be entered but still carry on with the workflow as it is not critical.
Hopefully that all makes sense. Any help or ideas would be really helpful. Thank you 🙂