find & replace commas with newline on Google Spreadsheet

前端 未结 7 2265
悲&欢浪女
悲&欢浪女 2020-12-05 09:51

I\'ve been trying to figure out how to replace commas with line-breaks. I\'ve tried using (/r/n/), char(10), the Unicode representation (can\'t rem

相关标签:
7条回答
  • 2020-12-05 10:36

    IF you are trying to use the Ctrl+F to find and replace well you can't. at least I dont know how.

    but if you have a cell say A1 that contains the following : "stack,overflow" then if you type this in A2 it should work: =SUBSTITUTE(A1, ",", char(10))

    https://support.google.com/docs/bin/static.py?hl=en&topic=25273&page=table.cs

    you can then copy the content of A2 and in A3 right click -> Paste Special... -> Values Only.

    Hope this helps

    UPDATE 2016-AUG Google Spreadsheet now support searching for newline using \n here is how: Edit -> Find and Replace

    0 讨论(0)
提交回复
热议问题