【问题标题】:Column Data added to another worksheet as Row Data with selected information列数据添加到另一个工作表作为行数据与选定的信息
【发布时间】:2019-10-27 15:35:00
【问题描述】:

我在 Google 中有一个电子表格,其中包含列中的数据,标题位于 ROW 中。

Column A              Column B                   Column C
                       Ticked                     Ticket  
Property Info        Property 1                 Property 2
--------------------------------------------------------------------
Address:           23 London Road            35 Manchester Road
Price:                £25,000                    £10,000
Rent:                 £500pcm                    £350pcm
Yield:                 50%                         35%

我希望能够勾选谷歌表格中的一个框,并将所需的信息添加到另一个电子表格中,如下所示:

Address                Price          Rent          Yield
-----------------------------------------------------------------
23 London Road        £25,000        £500pcm         50%
35 Manchester Road    £10,000        £350pcm         35%

我曾尝试使用QUERY 来旋转数据,但这不起作用。 我也尝试过使用HLookup,但这也不起作用。

有没有更好的方法而不是对事件进行编程?

【问题讨论】:

标签: google-sheets google-sheets-formula transpose google-sheets-query google-query-language


【解决方案1】:

尝试:

=QUERY(QUERY(TRANSPOSE(Data!A:D), 
 "where not Col1 = FALSE", 1), 
 "select Col2,Col3,Col4,Col5", 1)

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-06-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-06-17
    • 1970-01-01
    相关资源
    最近更新 更多