We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2014-02-16 10:41 AM
2014-02-16 02:31 PM
2014-02-17 05:48 PM
valueToBeUsed = "" IF thisConditionIsMet THEN valueToBeUsed = theREAL_parameter ELSE valueToBeUsed = theTEXT_parameter ENDIFBest regards.
2014-03-02 04:18 PM
IF TheValue=0 THEN HIDEPARAMETER "TheValue"Or, in some other case, just use a TEXT parameter and set its value to " " (empty or a space) in one situation (hide-condition met) or to a "written number" with the STR function:
IF TheValue > 0 THEN PARAMETERS param = STR(TheValue, 3,2) ELSE PARAMETERS param = "" ENDIF