SOLVED

Replace part of a link with text from a cell and capitalize

Copper Contributor

Hello,

 

I am using IMAGE formula to grab photos from a website

 

I would like to automatically replace part of the link with the text of a different cell and capitalize the letters.

Screenshot.jpg

Attached example file

 

Could you please help me out?

 

Thanks a lot!

4 Replies

@Geoff 

=IMAGE("https://.../product/" & A98 & "/current/...", 3, 90, 90)

Thank you!

And how to capitalize the characters of cell A98 please? Would that be possible?
best response confirmed by Geoff (Copper Contributor)
Solution

@Geoff 

That would be

 

=IMAGE("https://.../product/" & UPPER(A98) & "/current/...", 3, 90, 90)

1 best response

Accepted Solutions
best response confirmed by Geoff (Copper Contributor)
Solution

@Geoff 

That would be

 

=IMAGE("https://.../product/" & UPPER(A98) & "/current/...", 3, 90, 90)

View solution in original post