Skip to content

get_column_interval

Source code

Description

Given the start and end columns, return all the columns in the series.

https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html

Usage

get_column_interval(start, end, ...)

Arguments

start start
end end
Additional arguments, i.e. kwargs.

Details

The start and end columns can be either column letters or 1-based indexes.

Value

An openpyxl Python object.

Examples

library("xlcharts")

get_column_interval(start = "A", end = 3L)