I have a Excel file. I try to read some data from it, but some cells are empty when loading (in file there are filled with data).
A simple code shows that the file is not properly read:
wb := TsWorkbook.Create;
wb.ReadFromFile(openme.FileName, sfExcel8);
wb.WriteToFile(openme.FileName + '.back.xls', sfExcel8, true);
wb.Free;
After saving a file, cells, which should be filled and were not filled on read are empty when opening file in Excel. Is there any option to resolve this??