Thanks for the reply. I looked at the article that you linked, but it didn't work.
If I set the image in my gallery to ThisItem.Value, it changes the data type to image. In the article linked above, it's using First(TableName).ColumnNameInExcel ... when I did this, it thinks the data type in the data table is text. When I take a picture with my app, nothing is getting saved to the column in excel.
My table is named "MainTable", and the column I'm trying to save images to is called "ProblemIllustration[Image]".
When the user clicks a camera icon, it opens a new screen that has a camera control named "Camera" and a gallery with Items = colImages. When user clicks the camera control, the OnSelect property is:
Set(
varname,
GUID()
);
Collect(collimages,
{DisplayName: varName & ".jpg",
Id: varName & ".jpg",
Value: Camera.Photo
}
);
This captures photos taken by the Camera into the colImages gallery. But nothing is going to the Excel table.
The intent is for images captured by Camera to show in colImages, and be written to the ProblemIllustration[Image] column in MainTable.
Maybe I missed a step?