Hi All,
I have x3 inputs of user data (from Office365) and two text inputs that pre populate with SP choice column data based on Radio button choices.
All 5 inputs are then placed into a collection.
The collection is working fine:
ClearCollect(
AckCollection,
{
col_ReviewYear: reviewyearTextInput.Text,
col_AckType: AckTextInput.Text,
col_Function: FunctionTextInput.Text,
col_Department: DepartmentTextInput.Text,
col_Name: nameComboBox.Selected.displayName,
col_Role: roleComboBox.Selected.jobTitle,
col_Email: emailComboBox.Selected.userPrincipalName,
col_Date: DatePicker.SelectedDate
}
)
What I am now running into trouble with is, I want to patch the collection to various lists based on the radio choice.
Eg.:
If Radio option 1 is chosen, patch to SP list 1
If Radio option 2 is chosen, patch to SP list 2
If Radio option 3 is chosen, patch to SP list 3
Can anyone assist please?
Thank you muchly.