Currently, values that look like datetime e.g. '23/02/2023 - 03:24 PM' will be parsed as numeric value. This caused the resulting Excel to display erroneous data. For example, for datetime '23/02/2023 - 03:24PM', it will be shown as 2.0.
To fix this, we need to:
Identify values that look like datetime.
Use regex (or other methods) to extract a parseable datetime.
Parse the datetime value.
Set the cell value and also the corresponding datetime format.
Currently, values that look like datetime e.g. '23/02/2023 - 03:24 PM' will be parsed as numeric value. This caused the resulting Excel to display erroneous data. For example, for datetime '23/02/2023 - 03:24PM', it will be shown as 2.0.
To fix this, we need to: