I have two screens that represent two views of the same data, one for reviewers and one for buyers.
Both screens are exactly the same except for the how the Galleries and Controls are filter/formatted.
I have a Radio control on both. The Radion control is pulling in the same default information from the same SPList using -
Gallery
Item: SortByColumns(Filter('Test List', StartsWith(Title, TextSearchBox1_2.Text)), "Title", If(SortDescending1, Descending, Ascending))
Radio control (1 & 2): Default: ThisItem.ContactStatus.Value
I would like to add an UpdateIf to the Radio 'OnChange' (if that is the correct place) that updates the column in the SPList when/if the user changes the status of an item in the Gallery using the Radio control.
Something like:
UpdateIf('Test List',CompanyName=Subtitle1_4.Text), ThisItem.ContactStatus.Value)
