Using Flow Decision to determine the workflow

Hello,

I am wanting to build a flowchart in which will ask me a question at the start of what type of transaction I would like to run. My goal would be to have different types of transactions built into this Master Flow chart. What would be the best way to choose which transaction I would like to run. So far I have experimented with “Flow decision” but have found this to not be effective. Is there a better activity for this?

1 Like

Fine
-hope these steps would help you resolve this
–use a INPUT DIALOG BOX ACTIVITY where we can ask a user for input, so here you can get the input from user and store it in a output variable of type string named str_input
–now use a FLOW DECISION activity and mention like this
str_input.ToString.ToUpper.Contains(“ANYSTRINGINUPPERCASE”)
If its true it will go to TRUE side or will go to FALSE side where we can have our sequence to be carried out that we need on either side

hope this would help you
kindly try this and let know for any queries or clarification
Cheers @P_Harry

Hi @Palaniyappan: After selecting the Excel file through Select File Activity, making a condition, pl. see below:

Under the flow decision in Flow Chart:

filePath = “.xlsx” Then Message Box

I only want to check that the selected file must be an excel file.

Thanks,