web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Multiple Recordings at...
Power Apps
Answered

Multiple Recordings at Once

(0) ShareShare
ReportReport
Posted on by 117

Hello,

 

I want to create training participant list. After typing the name of the training, I want multiple participants I selected to be added to new lines in the sp list.

 

koray1_0-1666873737360.png

When I push submit button only one time, I want to the participants should be added to the new lines in the sp list.

Like this:

koray1_1-1666873879250.png

Regards.

Categories:
I have the same question (0)
  • MSM_Scoozi Profile Picture
    63 on at

    You will want to write a patch statement for each of the dropdowns so that they wall get added when you click the button. You could also use the Concurrent function to make that happen a little quicker.

     

    Concurrent(Patch(ListName, {ParticipantName: dropdown1.selected.value}), Patch(ListName, {ParticipantName: dropdown2.selected.value}), Patch... );

  • zmansuri Profile Picture
    6,048 Super User 2024 Season 1 on at

    a15.jpg

     

    On Change of the all dropdowns. You can create a collection that matches your database schema. I have collected it in coltest4.

    Then in the next step you can patch the whole collection to your database. On the Submit Button. 

     

    Also if you want to do it straight forward and you have fixed number of dropdowns. You can just write patch for each dropdown on the submit button. But the first approach is will save you multiple database trips.

  • koray1 Profile Picture
    117 on at

    Hello @MSM_Scoozi 

    What is wrong?

    Concurrent(
    (Patch('Training List'; {Participant: Dropdown1.SelectedText.Value

    }));;

    Patch('Training List'; {Participant: Dropdown1_1.SelectedText.Value
    })

     

    koray1_0-1666876961762.png

     

  • MSM_Scoozi Profile Picture
    63 on at

    You have 1 too many open parenthesis after concurrent. 

    Each patch goes into that concurrent function and are separated by commas

     

    Concurrent(Patch('Training List', {Participant: Dropdown1.SelectedText.Value}), Patch('Training List', {Participant: Dropdown1_1.SelectedText.Value}));

     

    try the above code

  • koray1 Profile Picture
    117 on at

    Hi @MSM_Scoozi 

     

    There is a training name field that I want to save to the Sharepoint list, and there will be multiple users based on the training.

     

    Like this:

    koray1_0-1667285763919.png

     

    Concurrent
    (Patch('Training List';
    {Title: TextInput1.Text});
    {Participant: Dropdown1_1.SelectedText.Value};
    {Participant2:Dropdown1_2.SelectedText.Value})

     

    When I try with the code above, the names I choose for the participant do not save the sharepoint list 😞

     

    koray1_1-1667285866098.png

     

     

     

     

  • koray1 Profile Picture
    117 on at

    Help please 😞

  • Verified answer
    WarrenBelz Profile Picture
    154,399 Most Valuable Professional on at

    @koray1 ,

    You might try uncomplicating this - Concurrent is not really needed.

    Patch(
     'Training List'; 
     Defaults('Training List');
     {Participant: Dropdown1.Selected.Value}
    );;
    Patch(
     'Training List'; 
     Defaults('Training List');
     {Participant: Dropdown1_1.Selected.Value}
    );;

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Haque Profile Picture

Haque 94

#2
WarrenBelz Profile Picture

WarrenBelz 82 Most Valuable Professional

#3
Kalathiya Profile Picture

Kalathiya 38 Super User 2026 Season 1

Last 30 days Overall leaderboard