1904 Tarih Sistemini Uygulayın

Contents
[ ]

1904 tarih sistemini Microsoft Excel’de uygulamak için (örneğin Microsoft Excel 2003):

  1. itibarenAraçlar menü, seçSeçenekler ve öğesini seçinHesaplama sekme.
  2. seçin1904 tarih sistemi seçenek.
  3. TıklamakTamam.
Microsoft Excel’de 1904 tarih sistemi seçiliyor
yapılacaklar:resim_alternatif_metin
Aspose.Cells API’lerini kullanarak bunun nasıl elde edileceğini öğrenmek için aşağıdaki örnek koda bakın.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Initialize a new Workbook
// Open an excel file
Workbook workbook = new Workbook(dataDir+ "book1.xlsx");
// Implement 1904 date system
workbook.Settings.Date1904 = true;
// Save the excel file
workbook.Save(dataDir+ "Mybook.out.xlsx");