I have two forms that I want to "connect". For simplicity's sake, let's call them form_a and form_b.
In form_a, I have a field that I want to retain in a field in form_b. Let's call these fields field_a1 and field_b1 respectively. They both contain the relevant Project ID for the same project.
What I currently do is:
Open form_a.
Enter the Project ID into field_a1.
Submit form_a.
Open form_b.
Paste the Project ID into field_b1.
Submit form_b.
However, I want to combine the steps 3, 4 and 5 into a single action. So when I click Submit on form_a:
- The Project ID from field_a1 should be copied (into a variable, I guess)
- form_b should be automatically opened
- The Project ID should be pasted into field_b1
And if ever possible, I want to do this with an additional button (let's call this Submit and Proceed) without changing the functions of the original Submit button.
As a side note, these are regular forms and not stateless forms.
How can I achieve this? I'm only slightly knowledgeable about Zoho Creator, therefore clearly explained steps would be appreciated. Thanks in advance.