Hey Everyone,
Building out a form where my user will select a value from 1-14 in a question, and a calculation is performed based on this selection.
For my calculation question, I need to create a calculation based on the previous answer.
This is what I have so far.
if(${fee_type} = 1, (${new_sqft} * 0.15 + 50), 0, 0)
fee_type = integer
new_sqft = double
fee = double (Will be Calculated)
Any direction would be greatly appreciated, almost finished.
Thanks,
Trevor
Solved! Go to Solution.
You have too many parameters - only 2 not 3. Not sure what that last 0 is.
if(${fee_type} = 1, (${new_sqft} * 0.15 + 50), 0)
if(condition, true, false)
Note set the bind::type column if you are seeing strings getting concat instead.
You have too many parameters - only 2 not 3. Not sure what that last 0 is.
if(${fee_type} = 1, (${new_sqft} * 0.15 + 50), 0)
if(condition, true, false)
Note set the bind::type column if you are seeing strings getting concat instead.