Search code examples
excelexcel-formulacell

Separate Wrap text to multiple rows in excel


i've an issue which is i couldnt seperate wrap text cell to multiple row in excel,

here is the example :-

Wrap Text :

Wrap Text enter image description here

Without Wrap Text :

Without wrap Text enter image description here

so now I want to separate the without wrap text to multiple rows, the details will be looks like in wrap text.


Solution

  • Try using TEXTSPLIT( )

    enter image description here


    • Formula used in cell B2

    =TEXTSPLIT(A1,,CHAR(10))
    

    Where CHAR( ) function returns a character specified by the code number from the character set for your computer, therefore in the above formula it splits by line break. CHAR(10)