我在Google表格上设置了自己的图像。然后我可以添加一个脚本。我试过这样的东西,适用于Docs,但它不适用于Sheets:
function insertLink() {
DocumentApp.getActiveDocument().getBody().editAsText().insertText(0, "link
text").setLinkUrl("stackoverflow.com");
}
答案 0 :(得分:0)
在细胞中使用公式有一个解决方案:
=HYPERLINK( "http://www.google.com" ; IMAGE("https://media.gettyimages.com/photos/sergio-ramos-of-real-madrid-is-seen-during-the-uefa-champions-league-picture-id962895784" ) )
但它对我不起作用,因为我不能使用单元格来编写公式。实际上我想点击背景图像上方的图像。因此,如果我写公式,图像将隐藏在我的背景图像后面。