gpt4 book ai didi

split - 在单元格中拆分文本并创建列的功能

转载 作者:行者123 更新时间:2023-12-05 01:30:57 26 4
gpt4 key购买 nike

我有一个带有如下行的 Google 电子表格:

| sth1, sth2 |
| sth4 |
| sth1, sth3 |
| sth4 |

我想拆分此列中的每个单元格并创建新列,如下所示:
| sth1 |
| sth2 |
| sth4 |
| sth1 |
| sth3 |
| sth4 |

有人可以告诉我如何做到这一点吗?

最佳答案

使用 Google Apps Script,可以使用这个小脚本来完成:

代码

function splitColumn(range) {
var output = [];

for(var i in range) {
var split = range[i][0].split(",");

if(split.length == 1) {
output.push([split[0]]);
} else {
for(var j in split) {
output.push([split[j]]);
}
}
}
return output;
}

用法

enter image description here

例子

我为您创建了一个示例文件: row content to column

评论

通过选择 Tools 添加此脚本从菜单,然后是 Script editor .粘贴脚本并按保存按钮,您就可以开始了。

关于split - 在单元格中拆分文本并创建列的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18595801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com