Over 1.104.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and sys.variables and env.variables,.
CAD tip # 7644:
Question
A
If you need to set the "Standard" for your custom parts in BOM, or add your own "standard" part to the Inventor Content Center, you may need to set or change its property "Standard" (Norm). While the standard iProperty dialog doesn't offer changing of this property, you can perform the change using the following simple VBA macro:
Sub SetStandard()
Dim oProp As Inventor.Property
Set oProp = ThisApplication.ActiveDocument.PropertySets _
("{32853F0F-3444-11D1-9E93-0060B03C1CA6}")("Standard")
oProp.Value = InputBox("New value for Standard", , oProp.Value)
End Sub
Copy this macro (in the part environment) to the VBA code of the current document/part (Tools > Options > VBA Editor > DocumentProject > ThisDocument > View > Code (F7)) and run it with the arrow or with the F5 key.
Then include the iProperty "Standard" in you BOM (parts list).
Inventor
13.11.2010
14692×
this tip shared by ARKANCE experts applies to: Inventor ·
![CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

