简体   繁体   中英

How to display Image from URL in Google Sheets? (and apply it to multiple rows)

So I created a list of members in Google Sheets, each member having a profile image, name, location, etc.

I exported this list from import.io, a data extraction tool. The only problem is that when I export it, I get the profile image url for each member, instead of getting the image itself as a thumbnail.

Someone asked a similar question here . I tried using the =image("url") function and it worked, I can see the image.

What I want is a simple way of applying this function to the 200 cells I have that include a link to an image.

Any idea on how this can be achieved?

Thanks

=image() 与 Arrayformula 一起使用,因此如果您的图像 url 在行中,从单元格 A1 开始,以单元格 A2 结束,B1 中的公式将是=Arrayformula(image(A1:A2))

One-off solution:

01. Insert a new column, leading the "picture URL" column. Type "= image (A1)" in the new column, into the cell next to the first "picture URL" cell. I assume that A1 is the first cell in the image URL column. At the bottom right, on the cell, click and drag down for all 200 URLs

02. Mark all cells with formula in the new formula column. Copy "Ctrl + C". Right-click on the first cell with "picture URL" and select Insert Special, Enter only values.

Just worked for me.

I created a new column to insert the array formula and referenced the column with the urls.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM