Hi, pretty new to power apps.
I have created an app that has the following:
Name (dropdown)
Date (Date Picker)
Glasses (Radio Button)
Ear (Radio Button)
Shoes (Radio Button)
HighViz (Radio Button)
Gloves (Radio Button)
Where (Radio Button)
I have also added a PowerAppV2 called PPE_Insert, firstly with the above inputs, then 'add a row into a table'
I am trying to add a trigger to the submit button, do perform the above, but I am really struggling, this is what I currently have, but I have red error lines underneath (see image):
PPE_InsertFlow.Run(
ddName.Selected.Result;
DatePicker1.SelectedDate;
RadioGlasses.Selected.Result;
RadioEar.Selected.Result;
RadioShoes.Selected.Result;
RadioHighViz.Selected.Result;
RadioGloves.Selected.Result;
RadioWhere.Selected.Result
);
Notify(
"PPE record submitted successfully.";
NotificationType.Success
);
What am I doing wrong, other than replying on AI!