Selecting a specific linked model from Revit using Dynamo

I can’t seem to figure out how to select a specific linked model within Dynamo. I’ve been trying to use the Select.GetDocuments node, however I can’t figure out a way to use the Linked Path and Linked Doc outputs to select the relevant link. Does anyone know how to use this node?

Firstly, the error you are receiving on Elements.Type (if it is the Archi-Lab node) is because you are calling it with Rooms, and Rooms don’t have a (Revit) type.

To be specific about the link you are querying, you can use List.GetItemAtIndex to isolate the specific link you are interested in before passing to Element.GetFromLinkedFile:

To be more concise, you can use Rhythm to choose the link from a dropdown:

Hope this helps,
Thomas

2 Likes

Thank you Thomas, this helped immensely. Both solutions you presented worked perfectly.

1 Like