Combine brainstorm
functions to add Excel worksheet. For finer control, functions can be called individually. Depends on the openxlsx
package.
add_worksheet( wb, sheet, table, header = h1(), row1 = r1(), row2 = r2(), sc = 1, sr = 1, cw = 30, rh = 20, fc = F, fr = T, fac = NULL, far = NULL, tab = "#1A1B41", ... )
wb |
|
---|---|
sheet | Worksheet name. |
table | Table to add to worksheet. |
header | Header |
row1 | Primary row |
row2 | Secondary row |
sc | Starting column to write to. |
sr | Starting row to write to. |
cw | Vector of column widths or |
rh | Vector of row heights or |
fc | If |
fr | If |
fac | First active column, where |
far | First active row, where |
tab | Tab color of worksheet. |
... | Other arguments to be passed to |
Ayush Noori