Adding a newline character within a cell (CSV)

前端 未结 5 786
执笔经年
执笔经年 2020-12-05 12:54

I would like to import product descriptions that need to be logically broken according by things like description, dimensions, finishes etc. How can I insert a line break s

5条回答
  •  离开以前
    2020-12-05 13:47

    I have the same issue, when I try to export the content of email to csv and still keep it break line when importing to excel.

    I export the conent as this: ="Line 1"&CHAR(10)&"Line 2"

    When I import it to excel(google), excel understand it as string. It still not break new line.

    We need to trigger excel to treat it as formula by: Format -> Number | Scientific.

    This is not the good way but it resolve my issue.

提交回复
热议问题