Create a List using microflow and Iterate the created list with String value by index

0
Hi all,    I want to create a list by using the microflows. My output List should look like this  Output: value one by one For Ex : The list of value are : "Value1" The list of value are : "Value2" The list of value are : "Value3" The list of value are : "Value4"   In this way i need to get my output. Could anyone please guide me on this.  
asked
2 answers
0

 Hi Shruthi,

     Could you please elaborate the question, So that I can explain.

answered
0

Hey Sruthi,

You can perform a change List activity to add objects to your list. Is not possible to add string alone, I mean, without any object because a List should have a specific return type.

imagem.png

 

Then if you want to have the values on a specific order, you can use the list operation activity to Sort the list .

imagem.png

 

Check this doc to have more information related with the lists behaviour: https://docs.mendix.com/refguide/working-with-lists-in-a-microflow/

 

If this answer helped, mark as "accepted"

 

Best Regards,

Ricardo Pereira

answered