使用 Google 工作表将工作表中的数据行与 colA 中的序列号组合
Combining the rows of data from sheets with serial numbers in colA using Google Sheets
如何在合并自 2 个不同电子表格的数据的 A 列中生成序列号?
我试过
=QUERY({Sheet1!A2:G;Sheet2!A2:G}, "select * where Col5 is not null")
尝试:
=ARRAYFORMULA({{"serial number"; ROW(INDIRECT("A1:A"&COUNTA(
QUERY({Sheet1!E2:E; Sheet2!E2:E}, "where Col1 is not null", 0))))},
QUERY({Sheet1!B1:G; Sheet2!B2:G}, "where Col4 is not null", 1)})
如何根据另一列创建序列号列表。
如果您想使用现有的公式(稍作调整),您可以在 A2
单元格中使用
=SEQUENCE(COUNT(B2:B))
您的 B2
现有公式中的小调整是
=QUERY({Sheet1!B2:G;Sheet2!B2:G}, "select * where Col4 is not null")
使用的函数:
如何在合并自 2 个不同电子表格的数据的 A 列中生成序列号?
我试过
=QUERY({Sheet1!A2:G;Sheet2!A2:G}, "select * where Col5 is not null")
尝试:
=ARRAYFORMULA({{"serial number"; ROW(INDIRECT("A1:A"&COUNTA(
QUERY({Sheet1!E2:E; Sheet2!E2:E}, "where Col1 is not null", 0))))},
QUERY({Sheet1!B1:G; Sheet2!B2:G}, "where Col4 is not null", 1)})
如何根据另一列创建序列号列表。
如果您想使用现有的公式(稍作调整),您可以在 A2
单元格中使用
=SEQUENCE(COUNT(B2:B))
您的 B2
现有公式中的小调整是
=QUERY({Sheet1!B2:G;Sheet2!B2:G}, "select * where Col4 is not null")
使用的函数: