Setting Component X,Y,Z Limits

Hi All,
Is there any way I can set a limit to an X (or Y or Z) dim for a dynamic component?
i.e. user can scale in the X direction but only to a maximum of 9 m. Is there a simple syntax that allows for user input with <=?
I am looking to create a simple ramp component that I can use to quickly estimate a legal ramp. In Australia that is max 9 m run, max 1 in 14 slope before landings.

Cheers

Ping @pcmoor

yes…

Use

lenx= smallest(900,current(“lenx”)*2.54)

or if using another attribute say ‘length’

length = smallest(900,lenx)

1 Like

Thank you …Cheers