Hi Folks,
I am creating an app where user can make a lot entry in system. I am using Excel Online as data source. When user fills the form first time, he/she is able to save the details, but when they try to make another entry for the second lot, they get the following error:
Network error when using Patch function: The item has already been created on the server.
Scenario is: we receive multiple lots against one Journal, so we open the Journal, and we see Add lots button.

OnSelect property for New Entry button:
ResetForm(FormName); NewForm(FormName); Navigate('New Journal Information Screen',ScreenTransition.Fade)
it opens a Power Apps form, and when we save first lot details, it gets saved. But when we try to enter second lot info for same journal, that error is coming.

Save button OnSelect property:
SubmitForm(Form6); Notify("Entry has been submitted successfully");
Any help would be really appreciated.
Thank you!