Oh right, I tried that way on a copy of the app using this code on the OnSelect property of the submit icon and created StartDate and EndDate as well as a StartDateCalc column:
ForAll(UserListComboBox_1.SelectedItems, Patch(Bookings_1, Defaults(Bookings_1), {Title:ThisItem.Title, StartDateTime:DateTimeValue(Concatenate(Text(StartDate.SelectedDate), " ", StartHour.SelectedText.Value)),EndDateTime:DateTimeValue(Concatenate(Text(EndDate.SelectedDate), " ", EndHour.SelectedText.Value)), MeetingPOC:Concatenate(UserListComboBox_1.Selected.Surname,", ",UserListComboBox_1.Selected.GivenName," ", UserListComboBox_1.Selected.JobTitle),AttendeesEmail:UserListComboBox_1.Selected.Mail}))
//Patch - Title:ThisItem.Title
//Patch - StartDateTime:DateTimeValue(Concatenate(Text(StartDate.SelectedDate), " ", StartHour.SelectedText.Value))
//Patch - EndDateTime:DateTimeValue(Concatenate(Text(EndDate.SelectedDate), " ", EndHour.SelectedText.Value))
//Patch - MeetingPOC:Concatenate(UserListComboBox_1.Selected.Surname,", ",UserListComboBox_1.Selected.GivenName," ", UserListComboBox_1.Selected.JobTitle)
//Patch - AttendeesEmail:UserListComboBox_1.Selected.Mail