Hi @JBpowerapps ,
Do you want to edit photo in one existing record?
Firstly , I suggest you know more about the Patch function.
Patch function's syntax:
1)create a new record
Patch(table,Defaults(table),{...})
2)edit an existing record
Patch(table,item to modify,{...})
In your issue, you should use the second formula, not using Defaults(...).
Secondly, to upload image from powerapps to excel, you need to name that image field like this:
fieldname[image]
Thirdly, the updating formula should be like this:
Patch(Liste;
LookUp(Liste,ID=Value(Max(Liste; ID)));
{Photo :AddMediaButton1.Media}
);; Navigate(BrowseScreen1)
Best regards,