Is there a better way to format for list view?

Is there a better way to format for list view?
previously i tried to store a map but couldn't edit it once it was stored into itoo.

here is a shot of what i've been doing atm.

currently i am creating a string with the ";" as a seperator.

then right before i push the list to the list view, i just split it by ";"

but there has to be a better way to do it right? because i'm finding that i want to condense my list in the background before i start using it.

thank you for any input :slight_smile:

is there a way to store the map to a "local variable" to edit it? because of the fact i cannot use the global variables, im a little lost. still a little new to this

Alternatively store the data as list of lists, i.e. instead of the join block you use an add items to list block and add the list you created as an item to the main list

Later you do not need to split the string into a list anymore

Taifun

1 Like