Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display Thumbnail image in Google SpreadSheet if i have a link to the thumbnail image using Google App Script?

I am implementing the Google Apps Script and trying to display data in the Google Spread Sheet . I am able to display textual data properly, but i have a thumbnail URL of a video which i want to display in the spread sheet cell. i.e. i want to display the thumbnail image corresponding to a URL i have in my java script variable / object.

I am also referring the link, ([https://developers.google.com/apps-script/guides/sheets#writing]).

How can i do this. Any help or suggestion would be appreciated. Thanks.

like image 351
opensource-developer Avatar asked Dec 15 '22 02:12

opensource-developer


1 Answers

Use the script to write a formula to a cell as in =IMAGE(url)

like image 165
Zig Mandel Avatar answered May 23 '23 02:05

Zig Mandel