I have a form in formstack that I need to add some calculations that go beyond the capabilities of their calculation builder. I need to use a switch statement to determine which range the number is in and then perform a different calculation based on the range. Then I want to populate another field on the form with the answer in real time. Is it possible to do any of the following?
Add custom javascript to formstack to create the advanced calculations?
Have the formstack form communicate with javascript on the page that I'm embedding the form on.
Use the formstack api/webhook to do the calculations. I don't think this is an option since the webhook only works on submission and not on any other events.