我如何使用 WPS office 或任何其他工具在每个不同的列中使用设置数据创建等效的 explode()

How can I create the equivalent of an explode() USING set data in each different column using WPS office or any others

我有以下默认数据集:

我从 .TXT 转换为 .CSV 格式,但我得到了一行所有数据。怎样才能分到不同的行?

我有20万条数据。

我的默认 CSV 数据:

A

ath;006400005;1

我要 CSV 数据:

A       B           C

ath     006400005   1

用逗号分隔,而不是分号。

从您的 .txt 文件中,找到“;”并将其替换为“, " 然后将其转换为 .csv

在 GS:

=ARRAYFORMULA(IFERROR(SPLIT(A1:A; ";")))