Exclusive Split based on Validation Feedback

0
Is there a way I can tell if a validation feedback message has been triggered? if Validation Feedback = true  then show popup message else something_else   The obvious solution seems to have a boolean and set it to true whenever I call a validation feedback, but i want to see if there’s a more intuitive way. 
asked
1 answers
0

In a microflow there is no function or default variable available for this so you’ll need to implement this as you stated by creating a boolean variable that is set when the validation feedback is triggered and check this value at the end of the MF to decide if you need to show the popup.

answered