Google sheets 如果在google工作表上,则转置数据

Google sheets 如果在google工作表上,则转置数据,google-sheets,transpose,Google Sheets,Transpose,在谷歌工作表上,我希望将数据从一张工作表转换到另一张工作表。我想转置每一行,其中包含的日期等于今天 例如,在以下caase中: PO | Ship Date ---------------------------------------------- 754726 | 12/02/9009 754727 | TODAY() 754728 | 12/02/9009 754729 | TODAY() 7547210

在谷歌工作表上,我希望将数据从一张工作表转换到另一张工作表。我想转置每一行,其中包含的日期等于今天

例如,在以下caase中:

PO            | Ship Date
----------------------------------------------
754726        | 12/02/9009
754727        | TODAY()
754728        | 12/02/9009
754729        | TODAY()
7547210       | 12/02/9009
正在转换的数据是:

PO            | Ship Date
----------------------------------------------
754727        | TODAY()
754729        | TODAY()
试试这个:

=query(Sheet1!A2:B,"select A,B where B = date """&text(today(),"yyyy-mm-dd")&""" ")