I am trying to write a string "Site_x0020_Column_x0020_Test" to excel using SpreadsheetDocument OpenXML C#, but when we open excel file the string becomes "Site Column Test". How to preserve the original string in the excel file.
Below is the code used to write in to excel cell
// Add a new Excel Cell to our Row
var cell = new Cell { CellReference = cellReference, DataType = CellValues.String};
var cellValue = new CellValue();
cellValue.Text = cellStringValue;
cell.Append(cellValue);
excelRow.Append(cell);
Thanks