xlsx (version 0.6.1)

ForceRefresh: Force Refresh Pivot Tables and Formulae

Description

Functions to force formula calculation or refresh of pivot tables when the Excel file is opened.

Usage

forcePivotTableRefresh(file, output=NULL, verbose=FALSE)

forceFormulaRefresh(file, output=NULL, verbose=FALSE)

Arguments

file

the path of the source file where formulae/pivot table needs to be refreshed

output

the path of the output file. If it is NULL then the source file will be overwritten.

verbose

a boolean. Set to TRUE if you want details.

Value

forcePivotTableRefresh does not return any results

forceFormulaRefresh does not return any results

Details

forcePivotTableRefresh forces pivot tables to be refreshed when the Excel file is opened.

forceFormulaRefresh forces formulae to be recalculated when the Excel file is opened.

Examples

Run this code
# NOT RUN {
# Patch a file where its pivot tables are not recalculated when the file is opened
forcePivotTableRefresh("/tmp/file.xlsx")
forcePivotTableRefresh("/tmp/file.xlsx", "/tmp/fixed_file.xlsx")

# Patch a file where its formulae are not recalculated when the file is opened
forceFormulaRefresh("/tmp/file.xlsx")
forceFormulaRefresh("/tmp/file.xlsx", "/tmp/fixed_file.xlsx")
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace