列数据添加到另一个工作表作为具有选定信息的行数据
Column Data added to another worksheet as Row Data with selected information
我在 Google 中有一个电子表格,其中包含行中 headers 的列中的数据。
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%
我希望能够在 google 工作表中勾选一个框,并将需要的信息作为一行添加到另一个电子表格中,如下所示:
Address Price Rent Yield
-----------------------------------------------------------------
23 London Road £25,000 £500pcm 50%
35 Manchester Road £10,000 £350pcm 35%
我曾尝试使用 QUERY
来旋转数据,但这不起作用。
我也尝试过使用 HLookup
但这也不起作用。
有没有更好的方法不用编程事件?
尝试:
=QUERY(QUERY(TRANSPOSE(Data!A:D),
"where not Col1 = FALSE", 1),
"select Col2,Col3,Col4,Col5", 1)
我在 Google 中有一个电子表格,其中包含行中 headers 的列中的数据。
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%
我希望能够在 google 工作表中勾选一个框,并将需要的信息作为一行添加到另一个电子表格中,如下所示:
Address Price Rent Yield
-----------------------------------------------------------------
23 London Road £25,000 £500pcm 50%
35 Manchester Road £10,000 £350pcm 35%
我曾尝试使用 QUERY
来旋转数据,但这不起作用。
我也尝试过使用 HLookup
但这也不起作用。
有没有更好的方法不用编程事件?
尝试:
=QUERY(QUERY(TRANSPOSE(Data!A:D),
"where not Col1 = FALSE", 1),
"select Col2,Col3,Col4,Col5", 1)