Hi @Daan,
Thanks for replying, I have finally figured out using a bit of python and without the need of having all Revit Linked in my open project file.
I leave the code to get all the sheet from documents, just in case someone need.
import clr
clr.AddReference(‘RevitAPI’)
from Autodesk.Revit.DB import *
Node input
docs = IN[0]
List to store elements of the “Sheets” category
sheet_elements =
Iterate through the documents and retrieve elements of the “Sheets” category
for doc in docs:
collector = FilteredElementCollector(doc)
elements = collector.OfCategory(BuiltInCategory.OST_Sheets).ToElements()
sheet_elements.extend(elements)
Node output
OUT = sheet_elements
