I have a PowerApps canvas App and I have a requirement of creating new records for all selected listbox items in to a table. I am actually trying to implement a many to many relationship scenario
my Listbox name is: ListBox1 and my table name is ContactsTable inside the page I have put a button and on click of button I put the following PowerApps logic:
ForAll(ListBox1.SelectedItems,Patch(ContactsTable ,Defaults(ContactsTable),{EmpID:2,Name:ListBox1.Selected.Name}));
it creates the last selected item repeated based on the number of items I selected from listbox any Idea would be great.
Solved! Go to Solution.
Hi @mjx ,
Assuming you want them all to have EmpID if 2, you would do this (also Name is not a good title for a field - it is a Reserved Word in Power Apps).
ForAll(
ListBox1.SelectedItems As MyList,
Patch(
ContactsTable ,
Defaults(ContactsTable),
{
EmpID:2,
Name:MyList.Name
}
)
)
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.
Hi @mjx ,
Assuming you want them all to have EmpID if 2, you would do this (also Name is not a good title for a field - it is a Reserved Word in Power Apps).
ForAll(
ListBox1.SelectedItems As MyList,
Patch(
ContactsTable ,
Defaults(ContactsTable),
{
EmpID:2,
Name:MyList.Name
}
)
)
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.
Hi @mjx ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
191 | |
70 | |
50 | |
38 | |
28 |
User | Count |
---|---|
243 | |
114 | |
91 | |
91 | |
71 |