I'm planning an online survey about customers' orders.
But I don't want my user to fill OrderId
field.
To solve this problem, I come to this solution:
- Put the
OrderId
into the URL, so my link will be like this:https://docs.google.com/forms/d/e/1FAIpQLSd5krwc-5LouEkaU8wdWIrg_wLLU1emAhuo0KU5My3v09NYaA/viewform?orderId=12345
- Get the
orderId
from the URL, and put it to theOrderId
field
But I faced 2 problems:
- The forms open trigger is for editor open instead of the user's open.
- I found no way to get the current URL.
Could anyone give me some hint about these 2 problems?