Is there a way to add to the sheet list schedule using dynamo to create new columns that correlates to the dates of Revisions and the revision number of sheets? Thanks
Hey,
There was some discussion here…
Final Version, thanks to Kenny with the Python
[Capture] revision tracking-MKA-2.dyn (21.6 KB)
# Copyright(c) 2015, Konrad K Sobon
# @arch_laboratory, http://archi-lab.net
# Thanks Kenny
import clr
# Import Element wrapper extension methods
clr.AddReference("RevitNodes")
import Revit
clr.ImportExtensions(Revit.Elements)
# Import DocumentManager and TransactionManager
clr.AddReference("RevitServices")
import RevitServices
from RevitServices.Persistence import DocumentManager
d…
…but it requires a shared parameter for every revision. So on a large project you might end up with thousands of them…
I would probably create it as an excel rather than inside Revit.
Hope that’s of interest,
Mark
Thank you Mark, this gave me a great starting point