No Description

DATEVALUE.data 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Date String Result
  2. "25-Dec-1899", "#VALUE!"
  3. "31-Dec-1899", "#VALUE!"
  4. "1-Jan-1900", 1
  5. "1900/2/28", 59
  6. "29-02-1900", 60
  7. "29th February 1900", 60 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  8. "1900/3/1", 61
  9. "13-12-1901", 713
  10. "14-12-1901", 714
  11. "1903/12/31", 1461
  12. "1-Jan-1904", 1462
  13. "2nd-Jan-1904", 1463 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  14. "19-12-1960", 22269
  15. "1st January 1970", 25569 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  16. "7-Dec-1982", 30292
  17. "1-1-2008", 39448
  18. "2038-01-19", 50424
  19. "2-6-2008", 39601
  20. "December 25th 2008", 39807 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  21. "1 Jan-2008", 39448
  22. "12-31-2008", 39813 // MS Excel success or failure dependent on country settings
  23. "31-12-2008", 39813 // PHPExcel tries to handle both US and UK formats, irrespective of country settings
  24. "8/22/2008", 39682 // MS Excel success or failure dependent on country settings
  25. "22/8/2008", 39682 // PHPExcel tries to handle both US and UK formats, irrespective of country settings
  26. "22/8/08", 39682
  27. "22-AUG-2008", 39682
  28. "2008/02/23", 39501
  29. "6-7-2008", 39635
  30. "28-2-2007", 39141 // MS Excel success or failure dependent on country settings
  31. "2-28-2007", 39141 // PHPExcel tries to handle both US and UK formats, irrespective of country settings
  32. "29-2-2007", "#VALUE!" // Should fail because it's an invalid date, but PHPExcel currently adjusts to 1-3-2007 - FIX NEEDED
  33. "1/1/1999", 36161
  34. "1954-07-20", 19925
  35. "22 August 98", 36029
  36. "1st March 2007", 39142 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  37. "The 1st day of March 2007", "#VALUE!"
  38. "1 Jan", 41275
  39. "31/12", 41639
  40. "12/31", 11658 // Excel reads as 1st December 1931, not 31st December in current year
  41. "5-JUL", 41460
  42. "5 Jul", 41460
  43. "12/2008", 39783
  44. "10/32", 11963
  45. 11, "#VALUE!"
  46. TRUE, "#VALUE!"
  47. FALSE, "#VALUE!"
  48. 1, "#VALUE!"
  49. 12345, "#VALUE!"
  50. 12, "#VALUE!"
  51. "12-Feb-2010", 40221
  52. "Feb-12-2010", 40221 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  53. "February-12-2010", 40221 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  54. "February 12 2010", 40221 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  55. "18 Feb 2010", 40227
  56. "17th 3rd 2010", 40254 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  57. "Feb 18th 2010", 40227 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  58. "1st Feb 2010", 40210 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  59. "1st-Feb-2010", 40210 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  60. "1me Fev 2010", "#VALUE!"
  61. "February 1st 2010", 40210 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  62. "2nd Feb 2010", 40211 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  63. "Second Feb 2010", "#VALUE!"
  64. "First August 2010", "#VALUE!"
  65. "1st August 2010", 40391 // MS Excel will fail with a #VALUE return, but PHPExcel can parse this date
  66. "15:30:25", 0