Hello,
I have a galley that displays coworkers and who they Report to. Instead of going into each record and updating that info I wanted to set you Radio buttons that you can pick between two people to change who they report to. I have the radio button being populated by two dropdowns. Once the radio buttons have been selected, I would like to submit all the changes at once. is this even posable or is there are better way of updating multiple records at one time?
here is my Item property on the gallery
With(
{
wActive: Filter(
'Configs Contacts List',
EmploymentStatus = "Employed" || EmploymentStatus = "Checking"
)
},
Sort(
Filter(
wActive,
IsBlank(Coworker_TextSearchBox_1.Text) || Coworker_TextSearchBox_1.Text in FullName,
IsBlank('Job Tilte Filter_1'.Text) || 'Job Tilte Filter_1'.Text in Title,
IsBlank(ReportsToFilterDropdown.Selected.ReportsTo) || Reports_To = ReportsToFilterDropdown.Selected.ReportsTo
),
FullName,
If(
SortDescending1,
Descending,
Ascending
)
)
)
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.