We have a lot of Project Information data that we need to put onto a Cover Sheet in Revit. I’m new to Dynamo so I need some help. The attach screen shot is the script that I have created The information does not seem to be passing through. What am I missing.?
Welcome to the forum!
It’s probably a list structure issue. All Elements of Type
is returning a list of elements. Since you’re providing a list of parameters, the node is assuming one parameter per element (matching list structure). You can use list levels (@L1
) to force the node to write each parameter to every element in the list.
1 Like
Awesome that did the trick… Thank you so much.