将下拉列表链接到阵列

时间:2019-10-08 17:02:25

标签: arrays google-sheets google-sheets-formula google-sheets-query importrange

我创建了一个数组,用于从Google表单的整个表中获取Google表格。数组的功能是

=QUERY(IMPORTRANGE("1r_0VSCu9r009_4.......ly6fMqpKeTjiXw","'Sort Test (New)'!A2:P100"),
 "SELECT Col2, Col8, Col4, Col9, Col10, Col11, Col12, Col13, Col1",1)

它在工作表中显示以下结果:

Screenshot of the current output of sheet

一切正常,除了在表单中添加新条目时,列A未绑定到以列B开始的数组。添加新条目时,列A中的选定列表项保持不变(行12),并且每次添加新条目时状态都会变得不准确。

我试图理解如何将Col A绑定到从Col B开始的其余阵列,以便每次添加新条目时,列A中的状态保持锁定于该特定人员并创建一个完整的新行。

1 个答案:

答案 0 :(得分:0)

您可以这样做:

=QUERY(IMPORTRANGE("1OySOlccLsMRG9cHYeNzZdJO2UnUtWcjx4YXmMZWlc2I", "Response!A2:P"), 
 "select Col2,Col8,Col4,Col9,Col10,Col11,Col12,Col13,Col1", 0)

0


=QUERY('Candidate Funnel'!A1:J, "where J is not null order by J", 1)

0


或倒序:

=QUERY('Candidate Funnel'!A1:J, "where J is not null order by J desc", 1)

enter image description here