@G31
(continuation of response)
So, you will need to do the following:
1) In your Submit action formula you will need to grab the value in the person input. So the formula would essentially need to be:
UpdateContext({lclPersons: yourPersonTextInputControlName.Text})​
2) The Update property of the Field1 datacard needs to be:
First(Split(yourPersonTextInputControlName.Text, ",")).Result​
3) In the OnSuccess action of the form, your formula would need to be:
With({_persons: Filter(Split(lclPersons, ","), !IsBlank(Result))},
Collect(yourList,
ForAll(LastN(_persons, CountRows(_persons)-1),
{Field1: Result,
Field2: Self.LastSubmit.Field2
}
)
)
)​;
UpdateContext({lclPersons, Blank()})
This should give you what you have described.
(this is submitting now...weird, it would not like the ordered list above)