Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 使用=hyperlink()从一张图纸自动更新单元格数据到另一张图纸_Google Sheets_Google Drive Api_Google Apps - Fatal编程技术网

Google sheets 使用=hyperlink()从一张图纸自动更新单元格数据到另一张图纸

Google sheets 使用=hyperlink()从一张图纸自动更新单元格数据到另一张图纸,google-sheets,google-drive-api,google-apps,Google Sheets,Google Drive Api,Google Apps,我想用sheet1中的数据自动更新Google电子表格文档中的sheet2。我面临的问题是,数据还与一个=hyperlink()关联。标准,='sheet1'!A1仅复制单元格中的“文本”,而不是超链接 这在活页1的单元格A1中 =hyperlink("http://class.guhsd.net/index.php?EMP=DT50";"link") ='sheet1'!A1 这是我在表2中输入的内容 =hyperlink("http://class.guhsd.net/index.php

我想用sheet1中的数据自动更新Google电子表格文档中的sheet2。我面临的问题是,数据还与一个=hyperlink()关联。标准,
='sheet1'!A1
仅复制单元格中的“文本”,而不是超链接

这在活页1的单元格A1中

=hyperlink("http://class.guhsd.net/index.php?EMP=DT50";"link")
='sheet1'!A1
这是我在表2中输入的内容

=hyperlink("http://class.guhsd.net/index.php?EMP=DT50";"link")
='sheet1'!A1

是否可以使用超链接导入数据?如果是,有人能和我分享这个公式吗?

试试下面的公式:

第2页:

=INDIRECT("sheet1!A1")

西基多,谢谢你!正是我想要的。