I’m trying to automate the generation of real estate contracts using Make. The workflow retrieves JotForm submissions, pulls a Google Docs template, replaces placeholders with form responses using the Set Variables module, and generates a new contract document. The issue is that Set Variables does not update dynamically for each new form submission. Instead, it retains the values from the first execution and applies them to all future contracts.
For example, if the first JotForm submission included “Yes” for the question “Are pets allowed?”, the variable is correctly replaced with “Pets are allowed.” If the response was “No,” it is replaced with **“Pets are not allowed.”**However, if I submit a new form with a different answer, the contract still shows the old response from the first execution, instead of updating with the latest submission.
How can I ensure that Set Variables updates dynamically with each JotForm submission so that every generated contract reflects the latest form responses? Any insights would be greatly appreciated!