I would like to know if there was a way to make an image in a cell of a Spreadsheets appear in a Google Slides automatically.
I've already tried this :
`
function fillTemplate() {
var PRESENTATION_ID = "<PRESENTATION_ID>";
var presentation = SlidesApp.openById(PRESENTATION_ID);
var values = SpreadsheetApp.getActive().getDataRange().getValues();
values.forEach(function(row) {
var templateVariable = row[0];
var templateValue = row[1];
presentation.replaceAllText(templateVariable, templateValue);
});
}
`
But sadly, as a result, my {{Logo}} variable didn't display the logo image but : "Imagecell".
Do you think there is a solution for this problem? I would be very grateful for your help!
Best,
Nonomg