How do I copy all contents of an Excel cell including the line spaces (carriage returns)?

How do I copy all contents of an Excel cell including the line spaces (carriage returns)? I am trying to read a cell in Excel that looks like this:

"Hello world,

This is my first line.

This is my second line."

I am currently using the GetRowItem activity to read a cell from Excel. For Output, I created a variable called “EmailBody”. I then use the TypeInto activity to write EmailBody into my email, however, it is only reading the first line of text in the cell, and not the text that’s after any hard carriage return (line breaks). So how do I read/write the entire contents of my cell? Overall, I’m trying to read from an excel file the body of an email from a cell, and then write it to a new outlook calendar meeting invite (automating meeting creation). I’m new to UiPath, and thanks in advance for your input.

You can use Read Cell Activity to read cell value in an excel file.

However, I’ve check with your question by use Read Range Activity and then use Get Row Item, it’s can read all text of an excel cell.