Problem with slash in cells

When using data with unit e.g. “35 mg/dl” the slash “/” in the cell will be shown as backslash and slash “/”. How can I solve this problem?

Hi,

I don't find any problem related "/". Which version you are using? Could you try the latest version (4.4.1).

I try the following code and attached is the output file which is fine.

Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
Cells cells = worksheet.Cells;
cells["A1"].PutValue("35 mg/dl");
workbook.Save("d:\\test\\abookb.xls");

If you still find the problem, post your sample code with output excel file. We will check it soon.

Thank you.