Revit Mep Library Link 'link'
It sounds like you're asking for a review of the Revit MEP Library Link (likely referring to the tool that connects Revit MEP with external manufacturer content libraries, or the built-in content management within Revit).
Since there are a few interpretations, here’s a breakdown of the most common contexts: revit mep library link
2. If you mean AutoDesk’s “Revit MEP Library Link” (legacy/external tool):
- Context: A discontinued or niche tool used to link external databases (Excel, ODBC) to Revit MEP families for bulk parameter updates.
- Review: Clunky, unstable in later Revit versions, and largely replaced by Dynamo scripts or paid add-ins (e.g., Ideate BIMLink, CTC MEP Tools). Not recommended for new workflows.
Part 5: Dynamic Linking vs. Static Loading
Understanding the difference between a dynamic link and a static load will save your project. It sounds like you're asking for a review
- Static Loading (Default): You load a pump family into your project. You delete the original
.rfa file from your desktop. The project works fine because the geometry is embedded. However, you cannot update the pump later without reloading it from scratch.
- Dynamic Linking (Advanced): You use the "Load as Group" or manage families via the Manage Families dialog. You check "Save as a group." This maintains a persistent link to the external file.
How to establish a dynamic Revit MEP library link: Context: A discontinued or niche tool used to
- Go to
Insert Tab > Manage Links.
- Navigate to the
Revit tab (if it’s a linked model) — Note: Families are not technically "Linked" like models, but referenced.
- For true dynamic behavior, use Nested Families.
- Load a "Parent" family (e.g., an Air Handling Unit).
- Link a "Child" family file path inside the Parent family editor.
- When the Child file updates, the Parent prompts you to reload.
This is the holy grail for MEP manufacturers who frequently update product specifications.
Script with Dynamo
- Dynamo script example: Update all families from a folder automatically.
- Nodes:
Directory.Contents → FamilyInstance.ByFamilyType → Document.ReloadFamily.
3. Setting Up a Central MEP Library Folder
Using ODBC for External Data
- Use when: Live equipment data (weights, costs, model numbers) from SQL/excel.
- Setup:
- Export ODBC settings from Revit via
File → Export → ODBC Database.
- Use external tool (e.g., Access, Power BI) to link back.
- Note: Revit does not auto-refresh from ODBC; requires re-export or API.
Use Family Reloading
- Right-click a family in Project Browser → Reload – updates from original
.rfa.
- For multiple families:
Manage → Manage Families → Select multiple → Reload.