What is the Google Spreadsheet syntax for the HYPERLINK formula to reference another cell that contains a hyperlink rather than a straight url string?

梦想的初衷 提交于 2019-12-12 09:10:37

问题


The hyperlink formula works nicely here - the effect is to hyperlink nicely from the image in the cell

=HYPERLINK( "http://www.google.com" ; IMAGE( "http://www.google.com/intl/en_com/images/srpr/logo3w.png" ) )

But what if we wanted to reference the hyperlink directly from another cell?

=HYPERLINK( "A2" ; IMAGE( "http://www.google.com/intl/en_com/images/srpr/logo3w.png" ) )

I can't quite seem to crack this little baby ;-)

Would provide users with the knowledge and ability to represent thumbnails hyperlinking to their bigger source files in a new window.

I have created a spreadsheet here:

https://docs.google.com/spreadsheet/ccc?key=0AogxdfOvltKQdDR4c3R2Y0hkdVdVTTFCTWtOVUVaVWc&usp=sharing

Many thanks, Mark


回答1:


Change

=HYPERLINK("A3" ; IMAGE(A3&"/convert?h=225"))

to

=HYPERLINK(A3 ; IMAGE(A3&"/convert?h=225"))

"A3" would be a named reference whereas A3 is a cell



来源:https://stackoverflow.com/questions/17881022/what-is-the-google-spreadsheet-syntax-for-the-hyperlink-formula-to-reference-ano

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!