Hi @Art_Ratta ,
Based on the screenshot that you mentioned, I suppose that you want to update existing record in your SP List, is that true?
If you want to use the Edit form to update existing record in your SP List, please make sure the DefaultMode property of the Edit form is set to following:
FormMode.Edit
and you must set the Item property of the Edit form to a specific record you want to update. Please make sure the Item property of the Edit form has been bind to specific record in your SP List properly.
You could consider generate an app based on your SP List data source, then it would generate three screens automatically, then you could use this generated app to edit existing records in your SP List easily.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/app-from-sharepoint
If you want to use Patch function to edit the existing record in your SP List, please take a try with the following formula:
Patch(
'SP List',
LookUp('SP List', Emp_id = "specific emp id value"), // find the specific record you want to update
{
JobLevel: JobLevelTextInputBox.Text,
Address: AddressTextInputBox.Text
}
)
Best regards,