My knowledge of the various Formula Controller functions is just enough to get some pieces of code to work, and usually not in the most efficient way.
Usually, when I have the following situation:
IF input a = X OR Y OR Z = 0.5
I use the following:
(+ifE(a,x)
+ifE(a,y)
+ifE(a,z))*0.5
But now the goal would be to use input a only once in the code.
I've tried things like ifE(a,(x OR y OR z))*05
Obviously, it can't be that easy and that logical, and in fact I haven't managed to make it work except with the first formula I put above.
Have any of you had a similar situation, or do you know a more efficient way to get this goal (input a only once)?
Boolean Stuff, question about nesting the function OR (FFC)
[You can only see part of this thread as you are not logged in to the forums]
Re: Boolean Stuff, question about nesting the function OR (FFC)
I am not exactly sure what your goal is, so thi...
Re: Boolean Stuff, question about nesting the function OR (FFC)
Hi Alphagem-O.
This is very nice from you.
The...
Re: Boolean Stuff, question about nesting the function OR (FFC)
I see. Just as a thought: Have you tried quanti...
Re: Boolean Stuff, question about nesting the function OR (FFC)
Alphagem-O, nope, but it looks interesting, I w...
Re: Boolean Stuff, question about nesting the function OR (FFC)
Thank you again for your help, Alphagem-O.
I h...
Re: Boolean Stuff, question about nesting the function OR (FFC)
Yeah, it was really just an idea, not clear whe...
Re: Boolean Stuff, question about nesting the function OR (FFC)
Alphagem-O wrote: ↑Tue Feb 13, 2024 7:39 am
I a...