I am in the middle of automation where I am using “For each” loop after Assign activity. Expected Output should come in single in “write line” but I am able to see all the values have put in assign.
To get all the values to appear on a single line, you can do the following:
- Use a Variable: Create a variable (e.g., a string variable) before the “For Each” loop.
- Append Values in the Loop: Within the loop, use an “Assign” activity to append each value to the variable you created in step 1. Make sure to use the
+
operator to concatenate the values. - Display the Variable: After the loop, use a single “Write Line” activity to display the variable that now contains all the appended values.
Can you please share your assign value and expected output…
Based on condition you will get the Expected values… once check the If Condition whether it was satisfying or not
Hi @Anirudh_Tugawe ,
You can use If condition to check before write line
regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.