0

I would like to ask a question about display

This code is working OK to display photo in web app

<img src="https://drive.google.com/uc?export=view&id=1WkJNdilRDNM2l37fvPHhofYZVUJ20zhy"/>

But I want to get ID of picture in google sheet cell

<img src="https://drive.google.com/uc?export=view&id=" + data[xx] 

which id is on the column xx so how could I write the code. Thank you.

<img src="https://drive.google.com/uc?export=view&id= +"<?= data[xx]?>"
TheMaster
  • 45,448
  • 6
  • 62
  • 85
JACK
  • 1
  • 2
  • See https://stackoverflow.com/questions/63720612/what-does-the-range-method-getvalues-return-and-setvalues-accept – TheMaster Mar 22 '22 at 04:37

1 Answers1

0

Thank you I already get it

<img src="https://drive.google.com/uc?export=view&id=<?=data[10]?>">
JACK
  • 1
  • 2