Hi
I am fairly new to Powerapps so any help will be much appreciated.
I have the form below which creates a new project and I use the combo box to select multiple users and store them in the text field multiusers.
However when I create a new record all the other fields save as one record and the users then save as another.

The code in the combo box is:
Office365Users.SearchUser({searchTerm:cmb_SavePeople.SearchText})
and the save button is:
SubmitForm(Form2);
Patch('Project Details',{MultiUsers:Concat(cmb_SavePeople.SelectedItems,DisplayName, " ; ")});
Reset(cmb_SavePeople)
How can I get it to create one record and not two.
Thanks