Hi everyone,
I’m currently working on a Dynamo script and running into an issue that’s blocking my progress.
What I Have:
I have a list of rooms (refer to the attached snip).
For example, in List[0], there are multiple room items:
List[0]
→ Room A
→ Room B
→ Room C
→ Room D
What I Want:
I want to split this list so that each room is placed into its own individual list, like this:
List[0] → [Room A]
List[1] → [Room B]
List[2] → [Room C]
List[3] → [Room D]
Any guidance or node-based workflows would be greatly appreciated!
Thank you in advance.