Hi everybody,
I'm trying to do a tag with a conditional statement in a formula.
Can I do something like that?
I wouldn't like to show the quality value in the tag when this value is equal to "C30/37" in a column.
Thank you in advance
Gelöst! Gehe zur Lösung
Gelöst von martijn_pater. Gehe zur Lösung
You need an on/off shared parameter "C30/37". Then a text shared parameter which checks the other.
<C30/37 on/off parameter> = true / false
<text parameter> = if (<C30/37>, " ", "quality strenght")
...or if(not(<C30/37>),"quality strenght"," ")
The principle as mentioned by @martijn_pater is correct, however, use a different naming style for parameters
YOUTUBE | BIM | COMPUTATIONAL DESIGN | PARAMETRIC DESIGN | GENERATIVE DESIGN | VISUAL PROGRAMMING
If you find this reply helpful kindly hit the LIKE BUTTON and if applicable please ACCEPT AS SOLUTION
@RDAOU wrote:
The principle as mentioned by @martijn_pater is correct, however, use a different naming style for parameters
- you cannot name parameters using special characters > < [ ] : ? \
- you shouldn't include computational syntax in parameters name - + / *
Ha, that's funny.:) Those are just <input parameter here> brackets, I guess someone could misread those...
...
YOUTUBE | BIM | COMPUTATIONAL DESIGN | PARAMETRIC DESIGN | GENERATIVE DESIGN | VISUAL PROGRAMMING
If you find this reply helpful kindly hit the LIKE BUTTON and if applicable please ACCEPT AS SOLUTION
...as to say you are right to point that out. Also I think I switched the text returned by the if statement, so let me rephrase and use some color;
You need an on/off parameter, let's say MySharedParameter1. And another text parameter, let's say MySharedParameter2. Shared parameters for scheduling.
MySharedParameter1 = true / false
MySharedParameter2 = if (MySharedParameter1 ,"quality strenght", " ")
...or if(not(MySharedParameter1 )," ","quality strenght")
Feel free to mark as solution and @RDAOU in addition. ^^
Sie finden nicht, was Sie suchen? Fragen Sie die Community oder teilen Sie Ihr Wissen mit anderen.