I have a form that will be triggered from another site via a link which we will add to the URL some data points which we want to parse out and plug into fields on our form upon opening. The string added looks something like this:
DataIn=Company%20Owned|US%20OU%20USD%20TCS||9876543|||234567||||345678|||||CUSTOMER%NAME%...aspx
We currently do this via an InfoPath form using the below formulas for each field (see screen shot).
substring-before(DataIn, "|")
substring-before(substring-after(DataIn, "|"), "||")
substring-before(substring-after(DataIn, "||"), "|||")
We want to do the same thing in a Nintex Form (using Responsive Designer) but are struggling with this. I'm assuming I'll need to create some kind of variable and saw a parse function but can't figure out the formula...HELP! Is that the right formula, how do I "convert" it...the length of the field inputs varies.