How can I make this work.
After trying so many different ways I came up with this.
I have a datacard called Job steps and I have 10 textinputs as shown below. (Also see pic for reference)
textinput 1
textinput2
textinput3
textinpit 4
.
.
.
.
textinput10
I want the textboxes to get back their default values when user opens the submitted form in edit mode.
I used If(!Exisitng, "1.", First(Split(ThisItem.JobSteps,"|")).Result). -- - I am checking if it is not an existing form then have 1. in the textinput, if not (if its edit form) have the defaulted value that the user submitted when they created this form.
Technically the above formula works for my First TextInput but how can I get back the other TextInput information?
I tried the formula (See below) For the second textinput but I am not sure how to make this work.
My patch function for this coloumn is
jobsteps: Concatenate(TextInput7.Text,"|", TextInput8.Text, "|", TextInput14.Text)
Any help is highly appreciated!!!