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