View source: R/WorksheetCopy.R
WorksheetCopy | R Documentation |
Copy the values, styles, dimensions, merged cells, margins, and
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.copier.html
WorksheetCopy(source_worksheet, target_worksheet, ...)
source_worksheet |
source_worksheet |
target_worksheet |
target_worksheet |
... |
Additional arguments, i.e. kwargs. |
print/page setup from one worksheet to another within the same workbook.
An openpyxl Python object.
## Not run:
wb <- Workbook()
ws1 <- wb$active
ws2 <- wb$create_sheet("Mysheet")
WorksheetCopy(source_worksheet = ws1, target_worksheet = ws2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.