Google 表格转置公式[重复]

问题描述 投票:0回答:2

如何将红色单元格中的数据转换为绿色单元格中的数据?

enter image description here

google-sheets google-sheets-formula spreadsheet unpivot
2个回答
1
投票

试试这个

=query(arrayformula(split(flatten(A2:A3&"|"&B2:F3),"|")),"select * where Col2 is not null")

如果行数未定义,请尝试

=query(arrayformula(split(flatten(A2:A&"|"&B2:F),"|")),"select * where Col2 is not null")

但是限制sheet的行数以防止长计算

enter image description here


0
投票

使用此处记录的

TRANSPOSE
函数:https://support.google.com/docs/answer/3094262?hl=en

使用示例

TRANSPOSE({1,2;3,4;5,6})

TRANSPOSE(A2:F9)

语法

TRANSPOSE(array_or_range)

`array_or_range` - The array or range whose rows and columns will be swapped.
© www.soinside.com 2019 - 2024. All rights reserved.