Pipe Material Export to Excel

Hi everyone,

I’ve made a script to export pipe parameters, like diammeter, lenght…
But, i can’t export the material, it just put the word “material”.

1

You’re close. Parameter.Name gets you the name of the parameter: Material. This is the parameter you want to get from the element. Using GetParameterValueByName for the element’s Material gets you Material 1652642, the material type. Use Element.Name to get the name of the element’s material type.

1 Like

Those values are actual Revit materials. Place an element.name node or an element.name universal node (clockwork package) after the listing of materials and it will get you the names.

You are the King!