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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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