In an excel file, I have 6 checkboxes. In my process, all the value are put in a single list called Method_ID.
I have to manage each half in two different way. So I have to put 3 in a second list, and the other 3 in a third list. Because the following process needs a list for the input.
If I use a ListBuilder to make the second list, I can't make the third in another ListBuilder as you can see :
Do I have to use the ListBuilders in parallele? The problem is that I'll have to manage the amount of object later.
Thanks for your help.