You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fill an excel file in a loop over around 15 sheets with data. At the end of each sheet, I add a freezePane command. freezePane(wb, sn, firstActiveRow = 4, firstActiveCol = 7)
and after the loop save it.
I expect the sheets are frozen at 4,7
Actual Behavior
No freezing takes place
Steps to Reproduce the Problem
(please attach an example xlsx file if possible)
Just run the following code wb <- loadWorkbook(file = "temp.xlsx") sectors <- getSheetNames(file = "temp.xlsx") for (sn in sectors) { freezePane(wb, sn, firstActiveRow = 4, firstActiveCol = 7) } saveWorkbook(wb, file = "temp.xlsx", overwrite = T)
Expected Behavior
I fill an excel file in a loop over around 15 sheets with data. At the end of each sheet, I add a freezePane command.
freezePane(wb, sn, firstActiveRow = 4, firstActiveCol = 7)
and after the loop save it.
I expect the sheets are frozen at 4,7
Actual Behavior
No freezing takes place
Steps to Reproduce the Problem
(please attach an example xlsx file if possible)
Just run the following code
wb <- loadWorkbook(file = "temp.xlsx")
sectors <- getSheetNames(file = "temp.xlsx")
for (sn in sectors) {
freezePane(wb, sn, firstActiveRow = 4, firstActiveCol = 7)
}
saveWorkbook(wb, file = "temp.xlsx", overwrite = T)
Cheers
Renger
sessionInfo()
temp.xlsx
The text was updated successfully, but these errors were encountered: