I have a question about dynamo list.
I want to take only this global parameter from Floors which one is unique.
I have a trouble to take from this unique list i made (Floor 1, Floor 2) element parameters.
I think it is one node but i couldn’t find it.
You must provide an element to the “GetParameterValueByName” node!
…a string value is not an element!
Besides the “Element.Name” does not work in that context, find a “ToString” node… but consider not sending all those parameters! figure which one you need and send that!
Hello,
you can group by key (unique item) [GroupByKey] your floors then send these elements to the node [Element.GetParamramterValueByName] with the parameter(s) you want to obtain
Thanks again but I still want select only this two elements and get parameters from them. When I put unique kays to element.getparametervaluebyname it doesnt work.
Floor1 and Floor2 are keys (actually text strings and not elements as mentioned by Mr. Erfajo)
If you only want the 1st element of floor1 you put in a code block with x[0][0] at the exit of your group
and x[1][0] for the 1st element of floor2
Yes I know that now this text strings are not elements, but my question is how to make from them elements. My start question is, how to select only unique floors and teake from them parameters.
I think there is some other ways to do it but I dont know.