active_sheet-wb | R Documentation |
Get and set table of sheets and their state as selected and active in a workbook
Multiple sheets can be selected, but only a single one can be active (visible). The visible sheet, must not necessarily be a selected sheet.
wb_get_active_sheet(wb)
wb_set_active_sheet(wb, sheet)
wb_get_selected(wb)
wb_set_selected(wb, sheet)
wb |
a workbook |
sheet |
a sheet name of the workbook |
a data frame with tabSelected and names
wb <- wb_load(file = system.file("extdata", "openxlsx2_example.xlsx", package = "openxlsx2"))
# testing is the selected sheet
wb_get_selected(wb)
# change the selected sheet to Sheet2
wb <- wb_set_selected(wb, "Sheet2")
# get the active sheet
wb_get_active_sheet(wb)
# change the selected sheet to Sheet2
wb <- wb_set_active_sheet(wb, sheet = "Sheet2")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.