I have a string that I want to write to Excel
Example of the string is:
Dim excelString As String = "this is my string <br /> this is my second string"
I want to write that string to Excel but with line breaks, so the result will be
How can i achieve this? I tried replacing <br /> with vbLf but Excel just process it as a string. I can't manually alter the Excelfile as this is an automated process.
