If I add a worksheet to an Excel workbook using R
I am able to set its zoom level via:
openxlsx::addWorksheet(wb = wb, sheetName="foo", zoom = "bar")
But how do I set the zoom level to an existent sheet? openxlsx provides a similar option to row heights columns width:
openxlsx::setColWidths()
openxlsx::setRowHeights()
but I can't find the option for zoom level setting.