microflow execution order

0
I have created a microflow where I have a While loop which is showing an Incremental number from 0 to 10, but when I run the program it shows me numbers in reverse order. or even I have a show message activity after the loop and this message occurs before all the actions. can someone tell me in which order activities are performed in Microflows?
asked
2 answers
0

Babar,

Microflows are performed sequentially.  Can you share a screenshot of your microflow?  This might help the community provide better responses.

Thanks,

Mike

answered
0

Hi Babar Shah,

Create variable & assign the value 10,

then use while loop logic $variableName>0 & then change the variable value by $variableName-1,

It will work fine.

answered