您如何用同一文档中另一张列中的列中的单元格填充Google表格/Excel列?

发布于 2025-01-25 02:27:49 字数 1431 浏览 5 评论 0原文

我有一个具有主表的Google表文档,该文档将具有列x y y y z 以及后续纸张123每个都将具有列x y 和z。 Sheets 123表示将信息放入列中的不同人员。

主表的目的是显示已放入列中的所有信息x yz在其他三张床单中,所以这些信息可以立即查看。床单的目的123是这样,每个人都可以跟踪自己的个人信息,而无需查看其他人的所有信息/床单。

我希望能够自动从Sheets 1, 2 和3中自动获取新信息,并将其放置在相应的列中按时间顺序排列的主表。我知道可以让特定的单元格在另一张纸上显示信息,但是如果可能的话,我希望这些单元在其下面的任何列中自动填充下一个可用的单元格。基本上,主表中的列和其他三张纸是同一名,我希望主表中的列在将新信息输入到Sheets1 ,<代码> 2 和3。我希望这是有道理的。

例如,如果x在表格 2 中被填充jane doe,则主表应该自动将Jane Doe填充到列X的下一个可用单元格中。然后,某人在中键入John Smith中的X 1 1 ,它在jane doe之后自动填充了单元 John Smith主表中

这是一张演示表,具有我希望的方式,主表中的列在所有列中填充了所有列中的项目12,和3 https://docs.google.com/spreadsheets/d/1y0dldftq6ntlpju21hvedtuzyki-mjltz62tupybzgy/edit?usp = sharing

是否有可能在文档中连接表格?非常感谢您! :)让我知道您是否需要更多信息。

I have a google sheets document that has a main sheet which will have columns x y and z and subsequent sheets 1, 2, and 3 that will each also have columns x y and z. Sheets 1, 2, and 3 represent different people who are putting information into the columns.

The purpose of the main sheet is to display all of the information that has been put into columns x y and zin the three other sheets so the information can be viewed all at once. The purpose of sheets 1, 2, and 3 is so each individual can track their own individual information without also seeing all the info from other people/sheets.

I would like to be able to automatically pull new information from sheets 1, 2, and 3 and have it placed in the respective column on the main sheet in chronological order. I know it is possible to have specific cells display information on another sheet, but if possible, I would like the cells to automatically populate the next available cell in whichever column they are under. Basically, the columns in the main sheet and the other three sheets are the same name, and I would like the columns in the main sheet to populate whenever new info is input to the respective columns in sheets 1, 2, and 3. I hope this makes sense.

For instance, if column x in sheet 2 was filled in with the name Jane Doe, the main sheet should automatically populate Jane Doe into the next available cell in column x. Then someone types in John Smith into column x on sheet 1 and it automatically populates the cell after Jane Doe with John Smith in the main sheet.

Here is a demo sheet with how I would like it to be, with the columns in the main sheet populated with the items in all the columns from sheets 1, 2, and 3: https://docs.google.com/spreadsheets/d/1y0dldFtq6NtLPjU21HVedtUzYKi-MjLTz62tupYbZGY/edit?usp=sharing

Is it possible to connect sheets within a document like this? Thank you so much in advance! :) Let me know if you need any more information.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女 2025-02-01 02:27:49

使用公式,您可以在年表上有两个选择:

by-sheet

=QUERY({Sheet1!X:Z; Sheet2!X:Z; Sheet3!X:Z}, 
 "where Col1 is not null 
     or Col2 is not null 
     or Col3 is not null", )

”在此处输入图像描述”

row-by-row

=QUERY(SORT({
 Sheet1!X:Z, ROW(Sheet1!X:Z); 
 Sheet2!X:Z, ROW(Sheet2!X:Z); 
 Sheet3!X:Z, ROW(Sheet3!X:Z)}, 4, 1), 
 "select Col1,Col2,Col3
  where Col1 is not null 
     or Col2 is not null 
     or Col3 is not null"; )

下一个最好的事情是将带有OnEdit触发的时间戳脚本,因此每次您的PPL都会更改一个更改时间戳在某些列中添加在其表格中,然后您在主表中只会收集它并按时间戳进行排序。

https://stackoverflow.com/questions/questions/tagged/google-apps-apps-scripps-script+timestamp

with formulae, you have two options on chronology:

sheet-by-sheet

=QUERY({Sheet1!X:Z; Sheet2!X:Z; Sheet3!X:Z}, 
 "where Col1 is not null 
     or Col2 is not null 
     or Col3 is not null", )

enter image description here

row-by-row

=QUERY(SORT({
 Sheet1!X:Z, ROW(Sheet1!X:Z); 
 Sheet2!X:Z, ROW(Sheet2!X:Z); 
 Sheet3!X:Z, ROW(Sheet3!X:Z)}, 4, 1), 
 "select Col1,Col2,Col3
  where Col1 is not null 
     or Col2 is not null 
     or Col3 is not null"; )

the next best thing is to have a timestamp script with onEdit trigger so every time your ppl make a change a timestamp is added on their sheet in some column and then you in your master sheet will only collect it and sort by timestamp.

https://stackoverflow.com/questions/tagged/google-apps-script+timestamp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文