List Shifter: Reverse, Rotate, Swap and ITERATE (Loop) Over Bubble Lists | Now Part of Floppy

Hey @keith,

Thanks for the feedback.

I already follow the steps you said.
But, I still have problems with Process List Result.

In my system I have:

Data Type “tbl_parceiro” with a numeric field: “prc_tempo_espera”


Actual data in Data Type: [10, 11, 12, 13, 14, 15, 16, 17, 18]

I have a List Shifter LS1

In workflow I use “Initialized/Updated” then in Step 1 “PROCESS List LS1”

I have Repeat Group in a Pop up to show the Process List Result

  • The result should be: [20, 22, 24, 26, 28, 30, 32, 34, 36]

Some questions:

1- What is the option (variable) to use in list shifter LS1 in the field: Long Text Constant?
Here is the formula:
var result = test(This ListShifterKW´s Original List);

function test(x){
var d = x * 2;
return d;
}
result;

  • I already tried:
    • This ListShifterKW´s Selected Item Number = no result
    • This ListShifterKW´s Current Iteration Item = no result
    • This ListShifterKW´s Original List = only push first data from list
    • This ListShifterKW´s Shifted List = only push first data from list

2- What I need to do to “Process List” iterate over my list?

It only use the first data of my Data Type (table).

Thanks in advance!