Hi,
I'm importing date from CSV file including date into excel. The date field in the CSV file is configured as "mm-dd-yy hh:mm:ss".
The date cells in the excel sheet is configured as dd-mmm-yy hh:mm:ss.
My problems is that the date imported will show correctly if the day is below 13 but will always show in the wrong format when the day is 13 and above.
an example:
How can I solve this issue please?
I'm importing date from CSV file including date into excel. The date field in the CSV file is configured as "mm-dd-yy hh:mm:ss".
The date cells in the excel sheet is configured as dd-mmm-yy hh:mm:ss.
My problems is that the date imported will show correctly if the day is below 13 but will always show in the wrong format when the day is 13 and above.
an example:
Code:
[B]05-May-18 20:30:10[/B] -> show correctly because the "day" in the original date is less than 13. (original date in the CSV files is 05/05/18 20:30:10)
[B]05-Dec-18 11:57:35[/B] ->shows correctly still because the "day" in the original date is less than 13. (original date in the CSV files is 12/05/18 11:57:35)
[B]5/31/18 3:08:43[/B] -> here the date will [U]not [/U]show correctly and will remain in the same format of the original file
How can I solve this issue please?
Last edited: