R/read_excel_whole.R

Defines functions read_excel_whole

read_excel_whole <- function(fn) {
  if (is_available("xlsx")) {
    # preferred
    read_xls_from_xlsx(fn)
  } else {
    message("Using readxl to read xls. Manually check date and numeric cells. (for better result install xlsx package)")
    read_excel_whole_readxl(fn)
  }
}

Try the tidycells package in your browser

Any scripts or data that you put into this service are public.

tidycells documentation built on March 26, 2020, 7:35 p.m.