Hello dear community,
I’ve now got further with my start at Dynamo than I thought.
However, I’m now failing with the following problem
I determine a family (room data sub-point) and the room in which the family is located. Then I extract various parameters from the family such as “FM_Kostenstelle” or “FM_Fläche”.
These values should then be returned together in a list based on the room numbers in a multi-line text.
e.g.
Room 41.1.F13.3a (3x)
“FM_Kostenstelle” “FM_Abteilungskürzel” “FM_Zusatzinformation” "FM_Fläche
I’ve also made a picture of how the values should be shuffled.
Unfortunately, I don’t know Python, so this is probably the easier way for you.
Greetings
Looks like a job for List.Create
followed by List.Transpose
.
1 Like
I thought that was the solution, but the values are not arranged correctly.
The list is not sorted. Should it be sorted by index and if so, how (I’ve never done that)
I’ve always done that with GroupbyKey, but we have a different value here, so GroupbyKey can’t handle it.
I’ve created a picture here of what the list should look like in case I haven’t expressed myself clearly.
Thanks in advance for any help

Edit:
Ah, apparently you can also specify @l3 or something like that when transposing, now it is displayed properly. So that seems to be the solution, even if I don’t know what it does exactly or what kind of errors can occur.
Thanks again