I tried in my way but get whole values
Please help me out
@Arivu
Initialize Array:
Use an “Assign” activity to create an array variable.
Example: names = {“john”, “uma”, “kian”}
For Each Loop:
Use a “For Each” activity to iterate through each item in the array.
Set the TypeArgument property toarray of String.
Set the Values property to your array (names).
check this file
Main.xaml (7.6 KB)
Hi @Arivu ,
While looping on string contains multiple comma separated values, provide the Names.Split(“,”) as iterative variable.
The currentItem(loop variable) will have values ‘mohan’, ‘Umesh’ and so on…
Thank you for your suggestions
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.