将换行符中的字符串列表转换为 Google 工作表中的单独行

Convert list of strings in line break to separate rows in Google Sheets

我需要帮助将换行符中单个单元格中的字符串转换为单独的行。我试过它复制 google sheet 中的字符串然后粘贴到 excel sheet 中它有效但太繁琐了,因为有很多记录。

输入:

没有space

的单元格A1换行格式
Apple

Banana

Grapes

输出:

A1=Apple A2=Banana A3=Grapes

你可以做到:

=TRANSPOSE(SPLIT(B1, CHAR(10)))