Use CSV file to update elements' elevation

Greeting,

I have a CSV file which contains Revit elements’ unique ID and new elevation. I would like to use unique ID as an linkage using the elevation extracted from csv to update elements’ elevation.

The screenshot shows the current progress. The green box shows the way to change selected families elevation. The below shows extracting elevation and unique ID from CSV file. The problem I want to solve is to link csv and Revit elements using unique ID. (assume the unique ID from Revit and CSV file are matched)

There’s an out of the box node, Element By Id, that will return the element from the active document with the matching ElementId. That would be the easiest way to manage these elements.

This is brilliant. Thanks