I have an XLSB file to convert into CSV in Python but the years are changed from 2022 into 2092 in the CSV file. Would like to receive your help and guidance with the issue. Thank you.
test = pd.read_excel('./date_error.xlsb', engine='pyxlsb', sheet_name='date', skiprows=0)
test = pd.read_csv('./date_error.csv')
test = test.astype({'Date1': 'datetime64[D]',\
'Date2': 'datetime64[D]'})
test.to_csv('./test.csv', index=False)
The file is attached hereto. https://github.com/LiamV9/LiamV9/raw/main/date_error.xlsb