Is there a way to place two images in one cell?

I can use something like:

=IMAGE("http://emojidictionary.emojifoundation.com/img/emoji43.jpg",1)  

      

to show the sun as one image. I know you can use '&' to concatenate strings (for example =C8&", "&D9

) or use JOIN or several other methods. I would like something like (and note that this doesn't work):

=IMAGE("http://emojidictionary.emojifoundation.com/img/emoji43.jpg",1)&" + "&IMAGE("http://emojidictionary.emojifoundation.com/img/emoji444.jpg",1)    

      

to show the sun "+" and sunglasses in the same cell.

Is this possible or is there a cell limited to one image?

+3


source to share


1 answer


At this time, it is not possible to set two images in one cell by combining the result of the two IMAGE functions, but you can do this by adding emojis directly to the cell:



You can copy emojis from a web application that includes a function to paste them, or copy them from a web page like http://emojipedia.org/ .

0


source







All Articles