Google表格正在转换数据

问题描述 投票:-1回答:1

我有看起来像这样的数据:

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9MU3F3Zy5wbmcifQ==” alt =“ google sheet”>

但是我想将其转换为如下形式:

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9UcXp3OS5wbmcifQ==” alt =“ google sheet”>

这里是可编辑工作表的链接https://docs.google.com/spreadsheets/d/1ikqsmLC6trE5lX0ij4yQIQtMq9Uav470RtGaj57N10Q/edit?usp=sharing

有什么想法吗?

google-sheets google-sheets-formula transpose array-formulas google-sheets-query
1个回答
0
投票

尝试:

=ARRAYFORMULA(SORT(SPLIT(TRANSPOSE(SPLIT(QUERY(TRANSPOSE(QUERY(TRANSPOSE(
 IF(A3:C<>"", "♠"&A2:C2&"♦"&A3:C, )),,999^99)),,999^99), "♠")), "♦")))

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.