read_xlsx
From officer v0.3.4
by David Gohel
open a connexion to an 'Excel' file
read and import an xlsx file as an R object representing the document. This function is experimental.
Usage
read_xlsx(path = NULL)# S3 method for rxlsx
length(x)
# S3 method for rxlsx
print(x, target = NULL, ...)
Arguments
- path
path to the xlsx file to use as base document.
- x
an rxlsx object
- target
path to the xlsx file to write
- ...
unused
Examples
# NOT RUN {
read_xlsx()
# write a rdocx object in a docx file ----
if( require(magrittr) ){
read_xlsx() %>% print(target = tempfile(fileext = ".xlsx"))
# full path of produced file is returned
print(.Last.value)
}
# }
Community examples
Looks like there are no examples yet.