Hi,
Is it possible to apply if condition on input: Calc field.
example: if (a=0) then b*c else a*c.
Regards,
Sandeep
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
If condition on Input: Calc
-
- Posts: 41
- Joined: Thu Jan 25, 2018 3:51 pm
Re: If condition on Input: Calc
Found it...
Here it is:
( a == 0 ) ? (b * c) : (a * c)
Regards,
Sandeep
Here it is:
( a == 0 ) ? (b * c) : (a * c)
Regards,
Sandeep
Re: If condition on Input: Calc
Sandeep,
My apologies.
I completely forgot that Calc had ? and :
Well done!
Steven
My apologies.
I completely forgot that Calc had ? and :
Well done!
Steven