I want to be able to increase the number of stores without having to edit the Dynamo file

I am trying to create a solid of stores based on dimensional information entered from an Excel file.
However, with the current logic, I have to add a node each time I add more stores.
I would like to know how to avoid this.
Ideally, if I add a number of stores dimension information to the Excel file, the geometry will be created for that number of stores.


Shop.dyn (94.2 KB)

Transpose your data, and work with lists. Once transposed the first list is the sequence of names, the second the width, third the length, and fourth the height.

Deconstruct the lists, and build/name your shapes from there.

1 Like

Thanks for the reply.
I was able to achieve my goal by utilizing List.Transpose.

1 Like