@RezaDorrani
Hi everyone! Several of the community members have reached out and have been a huge assistance. I have been watching @RezaDorrani videos are awesome as well as reading numerous posts, but I am still stuck. The good news is I was able to create a collection but other than that I haven’t made much progress.
Here’s what I am trying to do. I have a SharePoint List titled “New Unanet Form List Test” and it has the following columns: Title (shown on form as Price Model), Call Order(single line of text, but conditional drop down on form), Task (single line of text), Position (single line of text), PoP (there is only one column on the SP list as PoP and it’s a single line of text), and Call Order Rate (single line of text).
What I am trying to do is when someone populates the Price Model, Call Order, Task, Position, PoP fields, and Call Order Rate the information appears on a separate line in the SP list titled “New Unanet Form List Test”. The problem I am having is with the PoP fields. I need all the information to populate on separate lines.
For example if I enter the below information into the form:
Price Model: FFP
Call Order: Project 1
Task: Tester
Position: Master Tester
PoP: 1/1/21 – 2/1/23
2/2/23 – 3/1/24
3/2/24 – 3/5/26
Rate: 70.00
It will appear like the below in the SharePoint List:
Title | Call Order | Task | Position | PoP | Rate |
FFP | Project 1 | Tester | Master Tester | 1/1/21 – 2/1/23 | 70.00 |
FFP | Project 1 | Tester | Master Tester | 2/2/23 – 3/1/24 | 70.00 |
FFP | Project 1 | Tester | Master Tester | 3/2/24 – 3/5/26 | 70.00 |
I have also detailed how my form is laid out below

Finally I have put below what I have done so far, but there are so many eorrs I have no idea where to begin
Clear(PoP);
Collect(PoP,txtPop.Text);
Collect(PoP,txtPop_1.Text);
Collect(PoP,txtPop_2.Text);
Collect(PoP,txtRate.Text);
Patch(
ForAll{'New Unanet Form List Test',Defaults(PoP),{Title:drpPriceModel.Selected,Call Order:drpCallOrder.Selected,Task:txtTask.text,Position:txtPosition.text,Call Order Rate;txtRate.text}));
I appreciate all of the assistance everyone has given, but this is driving me absolutely nuts. Any further help is solving this would be deeply appreciated.
Brian