Hello,
I am trying to prepopulate a field in one form based on the ID generated in another form.
I use the concat function to calculate an ID based on the timestamp:
concat(substr(now(), 0, 4),substr(now(), 5, 7),substr(now(), 8, 10),substr(now(), 11, 13),substr(now(), 14, 16),substr(now(), 17, 19))
I then want to include this ID in a note with a hyperlink to open a new form with the ID field pre-filled.
The ID for this interview is ${ID} Please capture the contact details by clicking on the [link] (URL+?d[contact_id]=${ID})
However, the reference to the ID field is causing the link formatting to break:
I can show the URL correctly as plain text by not wrapping it in the hyperlink formatting:
The ID for this interview is ${ID} Please capture the contact details by clicking on the link: URL+?d[contact_id]=${ID}
Does anyone know how to make this work?