List creation with right syntax

Hi, I’m trying to make a list, i think its something to do with these nodes but i cant put them right together at the moment. not sure how to format everything to work with the below set out as well.

Trying to achieve a list like this with a cycle amount to adjust what number it goes up too. Just cant get it right.

Mould 1, 2 and 3
Mould 4, 5 and 6
Mould 7, 8 and 9
Mould 10, 11 and 12

This is my failed attempted below to achieve the above list

image

Hej vanman

… hmm i’m not quite sure what you want to do with your data in your script. could you maybe elaborate a little more

hey rgs, trying re name a ton a views but i need them to go up in the format above. Will explain tomorrow if that dosnt make enough sense, have to run

@vanman A quick code block approach…

"Mould "+String.Concat(List.Chop(1..(c*3),3)+"");

20170921-1a

Nice to see some code but it only gets the first 3 right, need then

Mould 10, 11, 12
Mould 13, 14, 15

And so on

You aren’t able to view the attached image? :thinking:

Sorry I’m quite tired. The image attached is me getting it wrong but giving it my best go

Here is a node based approach …

I’m trying to get the list to populate like below

Mould 1, 2 and 3
Mould 4, 5 and 6
Mould 7, 8 and 9
Mould 10, 11 and 12
Mould 13, 14 and 15
Mould 16, 17 and 18

And continue populating like that with the amount entered. So each of those would be a sheet name. Sorry struggling to explain properly

Like this?..
20170921-1c

Another way …

3 Likes

Thank you! That codes gonna be a super useful example for other stuff I have to do too