R/read_xlsx.R
read_xlsx.Rd
Read and import an xlsx file as an R object representing the document. This function is experimental.
read_xlsx(path = NULL) # S3 method for class 'rxlsx' length(x) # S3 method for class 'rxlsx' print(x, target = NULL, ...)
path to the xlsx file to use as base document.
an rxlsx object
path to the xlsx file to write
unused
read_xlsx() #> xlsx document with 1 sheet(s): #> [1] "Feuil1" x <- read_xlsx() print(x, target = tempfile(fileext = ".xlsx"))