
Querying the coordinates of the range reference by an Excel name
getForceFormulaRecalculation-methods.RdQueries the "force formula recalculation" flag on an Excel worksheet.
Usage
# S4 method for class 'workbook,character'
getForceFormulaRecalculation(object,sheet)
# S4 method for class 'workbook,numeric'
getForceFormulaRecalculation(object,sheet)Author
Thomas Themel
Mirai Solutions GmbH https://mirai-solutions.ch
Examples
if (FALSE) { # \dontrun{
# mtcars xlsx file from demoFiles subfolder of package XLConnect
demoExcelFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(demoExcelFile)
# Ask whether Excel will automatically recalculate formulas on sheet mtcars
print(getForceFormulaRecalculation(wb, sheet = "mtcars"))
} # }