I have a patch function which saves the information the user inputs I want to allow the user to upload an image a .csv file I have the right field from the table and I added the "add picture" from the media section in PowerApps but what do I put in for my patch function all I have now is
Patch(
MediaItem,
Defaults(MediaItem),
{
ThumbnailRelativeUrl: AddMediaWithImage3
}
);
But the "ThumbnailRelativeUrl: AddMediaWithImage3" part is giving me an error
My field in the form looks like the image I attached
The button I added to the field has this patch function in it
Patch(
MediaItem,
Defaults(MediaItem),
{
MediaRelativeUrl:UploadedImage5.Image
}
);
any help