It's always easier to work with a JSON. It is not important that the values in the JSONs are real but now I provide a sample and you will have to change a lot because the field names are not the same. I hope you can manage it from here or someone else takes it from here if you are having problems doing the changes.
1.) Transform Sharepoint list to xml
2.) Select all Ticket ids and Status from Excel-List and Status from Sharepoint list
3.) Filter for changes (Status excel <> Status Sharepoint)
4.) Filter new (Status Sharepoint = null)
5.) Now you can apply to each (Step 3 and Step 4) to update or create.
Here is a sample code of the flow you can copy and paste (Press ctrl+v inside the "My clipboard" section of adding a new action) into a dummy flow to see how it works.
{"id":"2ba6aa2d-f31f-4276-aef0-56bfc40ba42d","brandColor":"#8C3900","connectionReferences":{"shared_sharepointonline":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline/connections/shared-sharepointonl-b959cb53-5ecb-4b41-805f-06e7795a0bd2"}},"shared_converterbypower2apps":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_converterbypower2apps/connections/shared-converterbypo-168dd966-d321-48d6-ae65-2bb3363fc29f"}},"shared_powerappsforappmakers":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_powerappsforappmakers/connections/shared-powerappsfora-72ad6d4c-b73e-4db7-a2ac-66bed864efe8"}},"shared_flowmanagement":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_flowmanagement/connections/shared-flowmanagemen-276a16fd-e558-4db2-8c1d-8f153142d8f4"}},"shared_office365":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_office365/connections/1597557c9920416e9a930edfee990646"}},"shared_commondataserviceforapps":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps/connections/62947705b1a746319ca1e59aae985afc"}}},"connectorDisplayName":"Control","icon":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KIDxwYXRoIGQ9Im0wIDBoMzJ2MzJoLTMyeiIgZmlsbD0iIzhDMzkwMCIvPg0KIDxwYXRoIGQ9Im04IDEwaDE2djEyaC0xNnptMTUgMTF2LTEwaC0xNHYxMHptLTItOHY2aC0xMHYtNnptLTEgNXYtNGgtOHY0eiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=","isTrigger":false,"operationName":"Scope_compare_lists","operationDefinition":{"type":"Scope","actions":{"Compose_List_1":{"type":"Compose","inputs":[{"Ticket":1,"Status":"Open"},{"Ticket":2,"Status":"Closed"},{"Ticket":3,"Status":"On hold"},{"Ticket":4,"Status":"Open"},{"Ticket":5,"Status":"Open"},{"Ticket":6,"Status":"Open"},{"Ticket":7,"Status":"Open"},{"Ticket":8,"Status":"Closed"},{"Ticket":9,"Status":"On hold"},{"Ticket":10,"Status":"New"}],"runAfter":{}},"Compose_List_2":{"type":"Compose","inputs":[{"Ticket":1,"Status":"Open"},{"Ticket":2,"Status":"Open"},{"Ticket":3,"Status":"On hold"},{"Ticket":4,"Status":"Open"},{"Ticket":5,"Status":"On hold"},{"Ticket":6,"Status":"Open"},{"Ticket":7,"Status":"Open"},{"Ticket":8,"Status":"Closed"},{"Ticket":9,"Status":"Open"}],"runAfter":{"Compose_List_1":["Succeeded"]}},"Compose_xml_list2":{"type":"Compose","inputs":"@xml(json(concat('{ \"root\": { \"data\": ', outputs('Compose_List_2'), ' }}')))","runAfter":{"Compose_List_2":["Succeeded"]}},"Select_delta":{"type":"Select","inputs":{"from":"@outputs('Compose_List_1')","select":{"Ticket":"@item()['Ticket']","Status":"@item()['Status']","OldStatus":"@first(xpath(outputs('Compose_xml_list2'), concat('root/data[Ticket=\"', item()['Ticket'], '\"]/Status/text()')))"}},"runAfter":{"Compose_xml_list2":["Succeeded"]}},"Filter_changes":{"type":"Query","inputs":{"from":"@body('Select_delta')","where":"@not(equals(item()['Status'], coalesce(item()['OldStatus'], item()['Status'])))"},"runAfter":{"Select_delta":["Succeeded"]}},"Filter_new":{"type":"Query","inputs":{"from":"@body('Select_delta')","where":"@equals(item()['OldStatus'], null)"},"runAfter":{"Filter_changes":["Succeeded"]}},"Apply_to_each_change":{"type":"Foreach","foreach":"@body('Filter_changes')","actions":{"Compose_dummy_text_for_update":{"type":"Compose","inputs":"Update Ticket @{items('Apply_to_each_change')['Ticket']} from @{items('Apply_to_each_change')['OldStatus']} to @{items('Apply_to_each_change')['Status']}","runAfter":{}}},"runAfter":{"Filter_new":["Succeeded"]}},"Apply_to_each_new_ticket":{"type":"Foreach","foreach":"@body('Filter_new')","actions":{"Compose_dummy_text_for_create":{"type":"Compose","inputs":"Add Ticket @{items('Apply_to_each_new_ticket')['Ticket']} with status @{items('Apply_to_each_new_ticket')['Status']}","runAfter":{}}},"runAfter":{"Apply_to_each_change":["Succeeded"]}}},"runAfter":{}}}