Convert Excel numeric to date
问题 I have a vector of numeric excel dates i.e. date <- c(42963,42994,42903,42933,42964) The output am I expecting when using excel_to_numeric_date function from janitor package and as.yearmon function from zoo package as.yearmon(excel_numeric_to_date(date)) [1] "Aug 2016" "Sep 2016" "Jun 2017" "Jul 2017" "Aug 2017" . However, the conversion for the first to elements of the date vector are incorrect. The actual result are: as.yearmon(excel_numeric_to_date(date)) [1] "Aug 2017" "Sep 2017" "Jun