With R and xlsx, I know I can format the cell style using the following:
STYLE <- CellStyle(wb) + Font(wb, heightInPoints = 14, name = "Arial")
setCellStyle(cells[[2,2]], STYLE)
However, I would like the entire sheet to be of this format. I don't think I should be looping every cell to achieve this.
Is this a way to specific that only that sheet has this format?
Thanks for help folks