03-31-2018 03:08 PM
This is my first time posting to these forums, so forgive me if I'm posting this in the wrong spot.
I'm using this if-else statement in a formula node:
if(fa*fc<0);
B = c;
else
A=c;
The error list returns Formula Node: Error in statement
Error on line 10 is marked by a '#' character: "...a*fc<0); B = c; else# A=c;"
I can't figure out what the error is.
Any thoughts/suggestions? I'm using 17.0
Thanks
Solved! Go to Solution.
03-31-2018 05:42 PM - edited 03-31-2018 05:56 PM
Hey,
Have you tried to remove the semicolon (";") after the if statement ?
03-31-2018 07:35 PM
*facepalm* that did it.
Thank you!