XLConnect (version 0.2-15)

getReferenceCoordinatesForName-methods: Querying the coordinates of the range reference by an Excel name

Description

Queries the coordinates of an Excel name in a '>workbook.

Usage

# S4 method for workbook
getReferenceCoordinatesForName(object,name)

Arguments

object

The '>workbook to use

name

The name to query. This argument is vectorized such that multiple names can be queried with one method call.

See Also

'>workbook, createName, existsName, removeName, getReferenceFormula, getReferenceCoordinatesForTable

Examples

Run this code
# NOT RUN {
# mtcars xlsx file from demoFiles subfolder of package XLConnect
demoExcelFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")

# Load workbook
wb <- loadWorkbook(demoExcelFile)

# Query reference coordinate for name 'mtcars'
print(getReferenceCoordinatesForName(wb, name = "mtcars"))
# }

Run the code above in your browser using DataCamp Workspace