【发布时间】:2019-03-12 10:28:57
【问题描述】:
【问题讨论】:
标签: google-sheets google-sheets-formula
【问题讨论】:
标签: google-sheets google-sheets-formula
=QUERY(A1:I, "select B,C,D where E='S190202'
or F='S190202'
or G='S190202'
or H='S190202'
or I='S190202'", 1)
对于单元格引用,您可以将其更改为:
=QUERY(A1:I, "select B,C,D where E matches '"&K2&"'
or F matches '"&K2&"'
or G matches '"&K2&"'
or H matches '"&K2&"'
or I matches '"&K2&"'", 1)
其中 K2 包含值 S190202
【讨论】: