tfussell / xlnt

:bar_chart: Cross-platform user-friendly xlsx library for C++11+
Other
1.43k stars 401 forks source link

save xlsx file then use excel open has issue #740

Open mankaixin opened 1 month ago

mankaixin commented 1 month ago

when only load a xlsx then do nothing。 Using excel open has some quesion 20240603170052

  void test_Load_save()
  {
      xlnt::workbook wb;
      wb.load(path_helper::test_file("3.xlsx"));
     // xlnt::workbook wb2;
     // wb2.copy_sheet(wb.active_sheet());
      wb.save(path_helper::test_file("2.xlsx"));
  }

2.xlsx 3.xlsx

mankaixin commented 1 month ago

I found the error here 微信截图_20240606140314 and image

mankaixin commented 3 weeks ago

I have been fork this repo and fix problem above