I have added a worksheet to an excel spreadsheet using the following code using the xlsx
package in R
library(xlsx)
wb <- CreateWorkbook()
newsheet <- createSheet(wb, sheetName = 'Sheet1')
Is there a way to automatically change the color of the tab for "Sheet1"?