Dynamo: Copy values between Revit parameters
To copy values between different Revit parameters quickly, use Dynamo script. Let’s say that we entered information (parameters values) into many Revit family instances in our project just to realize that it should be on another place (in another parameter). Or we change our minds during the project (it happens).
So, in order to do the boring task of copying parameter values to another place quickly, let’s use the power of Dynamo.
The script is simple, it just uses Element.GetParameterValueByName
and Element.SetParameterByName
methods to get and set the values.
All you need to do is:
- Adjust selection method (example gets all instances of a category or select the elements manually),
- Type in the parameters names,
- Set if the parameters are type or instance,
- Run the script!
Make sure you are copying values of the same type. If not, make sure to cast into appropriate value type (integer, string, etc.)
Also, this script will not work on system families (see solution below).
For system families we will tweak the script a little bit:
Replace FamilyInstance.GetType
node with two additional nodes: FamilyType.Name
and FloorType.ByName
(or WallType.ByName
, or RoofType.ByName
etc.)
Download the scripts from the Warehouse
Additional tip: if you have multiple lacing going from one point, use Watch
node as an intermediate knot holder.
In which version of Dynamo and which package “familyinstance.gettype” will work?
You are right, I get the error message “Use Element.ElementType instead” on FamilyInstance.GetType node.

I have Dynamo 2.0.3.8810 an it works fine when I replace FamilyInstance.GetType node with Element.ElementType node. That node does not depend on any package.
Hi,
Do you what could be a problem that is doesn’t work for any wall, roof, floor families, but it works perfectly fine for doors, windows?
Hi, if you carefully look at the images above, and read my instructions, you will see that there are two approaches.
One for system families (walls, floors, roofs).
The other for external families (doors, windows etc).
HI
I can’t find the script to download in the Warehouse…how or where Can I download this script? Many thanks
Hi, thanks, you are right, the link did not work.
I corrected that, please try again:
https://www.engipedia.com/warehouse/revit/dynamo-copy-parameters-values/