Revit Schedule Data to Uppercase

Hello! I am currently a beginner at Dynamo. I am trying to make all schedule data in revit to be uppercase. I currently have a script that is working with the finish plan, but not for door, lighting, and wall schedules. I believe this is because the finish schedule is utilizing the material identity data, where as the other schedules are using family components. The image shown is the same script being used for the finish plan other than the category selected is materials.

Any suggestions on how to connect the family components identity data to dynamo to make them uppercase?

Try like this’’

Description is a Type parameter, so you need to acces the Door Types and not the Instances as you are doing. Use Element.ElementType to ask the Instances to what Type they belong. Ask the Types for their descriptions, convert to UpperCase and push back into the Types.

1 Like