About 421,000 results
Open links in new tab
  1. How do I convert a calendar week into a date in Excel?

    Jun 12, 2012 · 25 I have a week number and a year, and would like to calculate the date of the Monday for that specific week in Microsoft Excel. Year Week Date (Monday) 2012 1 January …

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

    Feb 18, 2022 · I'm working with a csv which unfortunately has logged datetimes using the number format of 42705 although it should be 01/12/2016. I'd like to convert it to the right format in R …

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

    Mar 28, 2016 · 35 My data is extracted from an application and it has a text that looks like a date/time in excel. How do I actually convert "3/24/2016 11:22:07 PM" (in text) to a real …

  4. Converting number representing a date in Excel to a Java Date …

    I have a date column in Excel, but when I'm reading it in my Java application I'm getting the value as number. Example Excel Date 1/1/2013 I'm getting it as 41275.00 How to convert the …

  5. Converting unix time into date-time via excel - Stack Overflow

    Needing to view Unix time in Excel I too found it simpler to excise the nanosecond values from the time string. I also used a custom format for the resulting cells to display the data in the manner …

  6. 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 …

  7. Converting Excel Date Serial Number to Date using Javascript

    I have the following javascript code that convert date (string) to the Date Serial Number used in Microsoft Excel: function JSDateToExcelDate(inDate) { var returnDateTime = 25569.0 + ((inDate.

  8. How to convert a month number (i.e. "12") into month name in …

    Jun 13, 2018 · You can use DATE([Year],[Month],[Day]) passing any values for year and day. Just note that this will make the actual value of the cell different to 12 though. Excel will be reading …

  9. How do I read a date in Excel format in Python? - Stack Overflow

    Jul 10, 2009 · excel stores dates and times as a number representing the number of days since 1900-Jan-0, if you want to get the dates in date format using python, just subtract 2 days from …

  10. convert Excel Date Serial Number to Regular Date - Stack Overflow

    Dec 13, 2012 · I got a column called DateOfBirth in my csv file with Excel Date Serial Number Date Example: 36464 37104 35412 When i formatted cells in excel these are converted as …