Hi @MeenaAmmaiyappa If you want to retrieve items with tags including "Exception" in it, you can use wildcard character asterisk (*) as: "*Exception*"And as you said you want exception items by using "Report Data" action, then you should specify valu...
Hello @RicardoCabrera As we know, a decision stage is for evaluating single condition which results in true or false. And a choice stage meant to use when there are multiple conditions (works like switch-case).If you want to replace a choice stage wi...
Hello,I have come up with another approach where it can be used when number of digits and alphabets are not known.So, in this approach I am using ToNumeric() function to convert each character of the word into numeric, it works if that character is d...
Hello,The below solution may help you by storing the data in a data item called "Data", and if the data is changing but with same number of digits and alphabets.use calculation stage and perform this:Left([Data], 4) & "-" & Right([Data], 3)