I have already give the file PFA screenshot in the column "U" as you can see it is going to other line, there is text after indrapu but its not visible.
That is creating problem in formatting
Workbook workbook = new Workbook();
workbook.LoadFromFile("test.xlsx");
var StringValue = workbook.Worksheets[0].Range[1,1].Text;
StringValue = StringValue.Replace('\n', ' ');
workbook.Worksheets[0].Range[1, 1].Value = StringValue;
workbook.SaveToFile("result.xlsx");
System.Diagnostics.Process.Start("result.xlsx"); Workbook workbook = new Workbook();
workbook.LoadFromFile(@"XLStocsv.XLS");
for (int i = 13; i < 69; i++)
{
var StringValue = workbook.Worksheets[0].Range[i,16 ].Text;
StringValue = StringValue.Replace('\n', ' ');
workbook.Worksheets[0].Range[i, 16].Value = StringValue;
}
workbook.SaveToFile("result.xlsx");
System.Diagnostics.Process.Start("result.xlsx");