List help

Hi there,

I’m trying to extract data from the Revit API (specifically the member forces of beams) and re-use to associate the values to internal shared parameter, just so i can tag things in a different way compared to what Revit allows by default.
i get stuck when i need to re-group the value from the list to:
0, FX FX
1, FY FY
2, FZ FZ

just so i can then put this values into the shared parameters

Do you know if this is possible somehow?

many thanks!

list%20help|690x439

Hi @Damiano

String.Split node will get you started.

1 Like

Seems you simply need list.transpose

Thanks both!
i made it work in the end. I needed String.Split node first, then list.transpose

cheers!