PropertyWizard’s if() function works in the same way as the native Revit one, which is described in the online Help here: http://help.autodesk.com/view/RVT/2022/ENU/?guid=GUID-A0FA7A2C-9C1D-40F3-A808-73CD0A4A3F20 The syntax is: if(<condition>, <result-if-true>, <result-if-false>) When PropertyWizard evaluates an if() function, it starts with the <condition>. For example in this formula: if(Level.Name == “Level 0”, “It’s Level 0!”, “It’s some other Level!”) …
How to use the if() function in PropertyWizard for Revit Read More »