1904 Tarih Sistemi Uygulama

Contents
[ ]

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

  1. Araçlar menüsünden Seçenekler‘i seçin ve Hesaplama sekmesini seçin.
  2. 1904 tarih sistemi seçeneğini belirleyin.
  3. Tamam‘a tıklayın.
Microsoft Excel’de 1904 tarih sistemini seçme
todo:image_alt_text
Bunu başarmak için Aspose.Cells for Python via .NET API’lerini kullanarak örnek kodu aşağıda görebilirsiniz.
from aspose.cells import Workbook
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# The path to the documents directory.
dataDir = RunExamples.GetDataDir(".")
# Initialize a new Workbook
# Open an excel file
workbook = Workbook(dataDir + "book1.xlsx")
# Implement 1904 date system
workbook.settings.date1904 = True
# Save the excel file
workbook.save(dataDir + "Mybook.out.xlsx")