在 Google 工作表中定义命名范围时可以跳过范围吗?
Can I skip ranges when defining Named Ranges in Google Sheets?
如标题所示,有没有办法在定义命名值时跳过某个范围或某些值?我的 sheet 的名字是“All”,我现在拥有的范围是 All!A:B。我想排除 A1 和 B1。
我试过{All!A1:A1000, All!B1:B1000}
,但是命名值部分不接受列行格式?
为了进一步了解上下文,我将价差sheet 链接到 Google 形式。我有多个部分有相同的问题,所以我只想要一次问题(即第 1 行中的值),然后是所有答复。我正在为我的查询函数定义这样的范围,即:
={query({time_category,first_curric},"Select * Where Col3= 'class1'"); query({time_category,second_curric},"Select * Where Col19= 'class1'"); query({time_category,third_curric},"Select * Where Col19= 'class1'")}
如果需要更多信息,请告诉我。谢谢!
I want to exclude A1 and B1
去 All!A2:B
或抵消它:
={QUERY({time_category, first_curric},
"where Col3 = 'class1'");
QUERY(QUERY({time_category, second_curric},
"where Col19 = 'class1'", 0), "offset 1", 0);
QUERY(QUERY({time_category, third_curric},
"where Col19 = 'class1'", 0), "offset 1", 0}
如标题所示,有没有办法在定义命名值时跳过某个范围或某些值?我的 sheet 的名字是“All”,我现在拥有的范围是 All!A:B。我想排除 A1 和 B1。
我试过{All!A1:A1000, All!B1:B1000}
,但是命名值部分不接受列行格式?
为了进一步了解上下文,我将价差sheet 链接到 Google 形式。我有多个部分有相同的问题,所以我只想要一次问题(即第 1 行中的值),然后是所有答复。我正在为我的查询函数定义这样的范围,即:
={query({time_category,first_curric},"Select * Where Col3= 'class1'"); query({time_category,second_curric},"Select * Where Col19= 'class1'"); query({time_category,third_curric},"Select * Where Col19= 'class1'")}
如果需要更多信息,请告诉我。谢谢!
I want to exclude A1 and B1
去 All!A2:B
或抵消它:
={QUERY({time_category, first_curric},
"where Col3 = 'class1'");
QUERY(QUERY({time_category, second_curric},
"where Col19 = 'class1'", 0), "offset 1", 0);
QUERY(QUERY({time_category, third_curric},
"where Col19 = 'class1'", 0), "offset 1", 0}