Reference
Description
Normalise cell range references
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.reference.html
Usage
Reference(
worksheet = NULL,
min_col = NULL,
min_row = NULL,
max_col = NULL,
max_row = NULL,
range_string = NULL,
...
)
Arguments
worksheet
|
worksheet |
min_col
|
min_col |
min_row
|
min_row |
max_col
|
max_col |
max_row
|
max_row |
range_string
|
range_string |
…
|
Additional arguments, i.e. kwargs. |
Value
An openpyxl Python object.
Examples
library("xlcharts")
wb <- Workbook()
Reference(worksheet = wb$active, min_col = 1L, min_row = 1L, max_col = 1L, max_row = 1L)