将一个Google文档电子表格链接到另一个 [英] Linking one google docs spreadsheet to another

查看:158
本文介绍了将一个Google文档电子表格链接到另一个的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Google文档中的数据。称它为docA。



我想在docB中引用这些数据。一些沿着 = docA!Sheet1!A2



行的方法我该如何去解决这个问题?我不介意更改安全设置等。

解决方案

首先转到您要从中导入数据的电子表格(docA )并观察URL中提到的键的值(例如: https: //docs.google.com/spreadsheet/ccc?key=ABC#gid=0 ,在这种情况下关键是ABC)。


$ b 现在转到docB中的单元格并使用importRange函数导入数据。
$ b = importRange( ,!:)



例如:= importRange(ABC,Sheet1!A1:B10)

如果你只想导入一个单元格:
例如= importRange(ABC,Sheet1!A1);

如果您没有提到表单的名称,则使用第一个表单。


I have data in one google docs. Call it docA.

I would like to reference this data in docB. Something along the lines of =docA!Sheet1!A2

How would I be able to go about this? I do not mind changing security settings and the like

解决方案

First go to the spreadsheet that you want to import the data from (docA) and observe the value of the key mentioned in the URL (Eg: https://docs.google.com/spreadsheet/ccc?key=ABC#gid=0, in this case the key is "ABC").

Now go to the cell in docB and use the importRange function to import the data.

=importRange(, !:)

Eg: =importRange("ABC", "Sheet1!A1:B10")

If you want to import just one cell: E.g. =importRange("ABC", "Sheet1!A1");

If you don't mention the name of the sheet, the first sheet is used.

这篇关于将一个Google文档电子表格链接到另一个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆