Description Usage Arguments Value Examples
Convert a cell_limits object to a cell range
1 |
x |
a cell_limits object |
fo |
either |
strict |
logical, affects reading and writing of A1 formatted cell
references. When |
sheet |
logical, indicating whether to include worksheet name; if
|
length one character vector holding a cell range
1 2 3 4 5 6 7 | rgCL <- cell_limits(ul = c(1, 2), lr = c(7, 6))
as.range(rgCL)
as.range(rgCL, fo = "A1")
rgCL_ws <- cell_limits(ul = c(1, 2), lr = c(7, 6), sheet = "A Sheet")
as.range(rgCL_ws)
as.range(rgCL_ws, fo = "A1")
|
[1] "R1C2:R7C6"
[1] "B1:F7"
[1] "'A Sheet'!R1C2:R7C6"
[1] "'A Sheet'!B1:F7"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.