Message 1 of 13

Not applicable
08-14-2018
10:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have 3 instance parameters, call them yn, val1, val2. Val1 and val2 each control the height of a different element in a family. I want y/n to control whether they are aligned or can move independent of one another. I know this is can be done by creating an extra parameter to use as a placeholder for the override value (e.g. val3 = if(yn, val1, val2)), but I'd like to avoid wasting a parameter if possible.
TL;DR is there a formula function for overriding a parameter value? -> val2 = if(yn, val1, val2) returns circular reference error.
Thanks
Solved! Go to Solution.