I would like to loop through these 9 files names that were extracted from an Excel sheet.
In order to do so, how would I join these 3 lines into 1 single line, and from there loop through each filename?
Currently the loop will loop through every character instead of every filename
Use the Split syntax to split the files by using “,” and store it in a array variable. Use for each activity to loop through the array variable which is stored the splitted file names. Then you can use one on one file name to do the further development.
The loop was able to loop through 9 times now, which was what I was looking for. Thanks for the help. Now I will try to see how I can use the names to for Path Exists