GetNewXL {DescTools} | R Documentation |
Create a New Excel Instance
Description
Start a new instance of Excel and return its handle. This is needed to address the Excel application and objects afterwards.
Usage
GetNewXL(visible = TRUE, newdoc = TRUE)
Arguments
visible |
logical, should Excel made visible? Defaults to |
newdoc |
logical, determining if a new workbook should be created. Defaults to |
Details
Here's a list of some frequently used commands.
Let's assume:
xl <- GetNewXL()
workbooks | xl$workbooks()$count() |
quit excel | xl$quit() |
Author(s)
Andri Signorell <andri@signorell.net>
See Also
XLView
, XLGetRange
, XLGetWorkbook
Examples
## Not run: # Windows-specific example
# get a handle to a new excel instance
xl <- GetNewXL()
## End(Not run)
[Package DescTools version 0.99.55 Index]