I need a user to add several rows in a SharePoint list though a Power app.
In the first textbox they enter the Project number (example:19212-1) (1 value)
In the second textbox the copy a text with a separator (example: YV-111;YV-112;YV-113).
I want to split the text and create a collection with the values:
Projektnumer: Elementnamn:
19212-1 YV-111
19212-1 YV-112
19212-1 YV-113
And then save the Collection to the SharePoint list.
Thanks for your help.
Solved! Go to Solution.
You can follow these steps:
To create the Collection, Insert a button and OnSelect:
Hi @HubertWiech
We need to split the element field and use the Patch command to create multiple
ForAll(
Split(
ElementInput.Text,
","
),
Patch(
'EK-YV',
Defaults('EK-YV'),
{
Projektnummer:ProjectNumberInput.Text,
Elementnamn: Result
}
)
)
You can follow these steps:
To create the Collection, Insert a button and OnSelect:
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
192 | |
45 | |
44 | |
38 | |
35 |
User | Count |
---|---|
262 | |
83 | |
82 | |
70 | |
69 |