About 342,000 results
Open links in new tab
  1. excel - Change dot formatted date to Slash format - Stack Overflow

    Oct 4, 2022 · You can use substitute to replace the dot with a slash, then wrap that with datevalue to convert to a date. Lastly, format the cell as your desired Date format (such as Short Date or …

  2. Convert text date/time to a real date time in excel

    Mar 28, 2016 · If your date is in an unsupported format you will either need to change your operating system's regional settings or parse the date yourself from the original text. In short: …

  3. How to convert a date in Excel to ISO 8601 format

    Oct 29, 2016 · The basic function is: =TEXT(A1,"yyyy-mm-ddThh:MM:ss") Use this to convert your Excel date columns to separate ISO 8601 date columns. Next, copy the ISO 8601 …

  4. How to represent a DateTime in Excel - Stack Overflow

    Jun 11, 2009 · The underlying data type of a datetime in Excel is a 64-bit floating point number where the length of a day equals 1 and 1st Jan 1900 00:00 equals 1. So 11th June 2009 17:30 …

  5. Excel - How to convert UTC date time - Stack Overflow

    Apr 6, 2016 · I would like to use this string as a date time in excel 2016-04-06T18:05:32.6550717+03:00 How can it be converted?

  6. How to convert Excel date format to proper date in R

    Feb 18, 2022 · The character_fun determines the format of date entries, the string_conversion_failure argument specifies that you'll get a warning but the conversion will …

  7. Excel Date Conversion from yyyymmdd to mm/dd/yyyy

    TEXT function will simply convert data like 20180130 to a text value 2018-01-30. If you want a real date then +0 will make that conversion so you can then format the date any way you want.

  8. python - Convert Excel style date with pandas - Stack Overflow

    Jul 19, 2016 · I have to parse an xml file which gives me datetimes in Excel style; for example: 42580.3333333333. Does Pandas provide a way to convert that number into a regular …

  9. Excel How to convert datetime into only date - m/d/YYYY format

    Sep 9, 2016 · A date is just a number. To the left of the decimal place is the date, to the right is the time. =INT(A1) will return the whole number. Your first example will display as 05/09/2014 …

  10. Change Excel date number to Oracle date - Stack Overflow

    Jan 19, 2013 · I'm having date as 41293 in oracle, how can i show it in DD/MON/YYYY format? If i copy pasted it in Excel and change it to date format, it shows 01/19/13 Please help me.