查询过滤器值

问题描述 投票:0回答:2

我有一张Google表格,其中表格1(Data Q1)包含主题,课程,名称和每个学生的主题总数百分比的所有值。在下一张表(NYC/C)上,我想过滤一个值。

对于实例:如果数据Q 1包含Lesedi Selebalo Lesson 1'主题标题'包含'插入'百分比'。

=filter("NamedRange1="Lesson1", Namedrange2="subject name", namedrange3="student name and surname) =Query(Namedrange Percentage)

我加入了this document with the example of PAS Learning Method and Moodle

数据输入样本(Sheet Data Q1):

Sample of data input (Sheet <code>Data Q1</code>)

NYC/C选择:

Selection from <code>NYC/C</code>

google-sheets google-sheets-query
2个回答
0
投票

单细胞解决方案:

={QUERY('Data Q1'!A1:F, "select D 
                         where A like 'Quarter 1' 
                           and B like 'Lesson 1' 
                           and C like 'PAS: Learning Method and Moodle' 
                           and F like '"&A6&"'"),
  QUERY('Data Q1'!A1:F, "select D 
                         where A like 'Quarter 1' 
                           and B like 'Lesson 2' 
                           and C like 'PAS: Learning Method and Moodle' 
                           and F like '"&A6&"'")}


-1
投票

请在AG6中尝试:

=query('Data Q1'!A1:F14000,"select D where A like 'Quarter 1' and B like 'Lesson 1' and C like 'PAS: Learning Method and Moodle' and F like '"&A6&"'")

并为AH6改变Lesson 1Lesson 2

稍微调整您的布局(标题)而不是上面的公式,一个更短的公式(复制)可能适合。

© www.soinside.com 2019 - 2024. All rights reserved.