I am trying to wrap two strings in one cell with a line break between those two strings.
Expected result:
stringA
stringB
Actual result:
stringAstringB
I am using this code:
worksheet.Range[$"B{row}"].CellStyle.WrapText = true;
worksheet.Range[$"B{row}"].Text = stringA + "/n" + stringB;
// I now it's not / but \, but this textbox doesn't allow \ for some reason
I also tried to format the string, to use new line (environment var) and to use cell value. None of these solutions worked,
Thanks for your he