我的起始表看起来类似于以下内容
Person 1, 75
Person 2, 48
Person 3,
Person 4, 82
Person 5,
Person 6, 93
...
我现在尝试在下面的查询中包含一个“where”语句来排除没有数值的实体。这是我目前要向我展示上面集合中最低的5个值,它到目前为止是有效的
=QUERY('DPS Transpose Tables'!D1:E29;"select D, max(E) group by D order by max(E) asc limit 5 label max(E) ''";0)
我怎样才能添加这样有用的东西
=QUERY('DPS Transpose Tables'!D1:E29;"select D where (E<>"" OR Is not NULL), max(E) group by D order by max(E) asc limit 5 label max(E) ''";0)
提前一百万!
尝试'其中E> = 0',如下所示:
=QUERY('DPS Transpose Tables'!D1:E29,"select D, max(E) where E >=0 group by D order by max(E) asc limit 5 label max(E) ''",0)
你也可以试试'WHERE IS NOT NULL'
有时候我发现使用> = 0并没有得到理想的结果
=QUERY('DPS Transpose Tables'!D1:E29,"select D, max(E) where E IS NOT NULL group by D order by max(E) asc limit 5 label max(E) ''",0)