Create a new Workbook object
wb_workbook(
creator = NULL,
title = NULL,
subject = NULL,
category = NULL,
datetimeCreated = Sys.time()
)
Creator of the workbook (your name). Defaults to login username
Workbook properties title
Workbook properties subject
Workbook properties category
The time of the workbook is created
A wbWorkbook object
Other workbook wrappers:
wb_add_chartsheet()
,
wb_add_data_table()
,
wb_add_data()
,
wb_add_formula()
,
wb_add_pivot_table()
,
wb_add_worksheet()
,
wb_clone_worksheet()
,
wb_copy_cells()
,
wb_creators
,
wb_freeze_pane()
,
wb_get_base_font()
,
wb_save()
,
wb_set_col_widths()
,
wb_set_last_modified_by()
,
wb_set_row_heights()
,
workbook_grouping
,
ws_cell_merge
## Create a new workbook
wb <- wb_workbook()
## Set Workbook properties
wb <- wb_workbook(
creator = "Me",
title = "Expense Report",
subject = "Expense Report - 2022 Q1",
category = "sales"
)