An array of two numbers where the first number is the column index and the second number is the row index.
A boolean indicating whether the column and row indexes are zero-based. Defaults to false.
The A1 notation of the column and row index.
If the length of the CR array is not 2.
If the row index is not an integer.
If the row index is less than 1.
colRowToA1([3, 5]);;
//=> 'D5'
colRowToA1([3, 5], true);;
//=> 'C5'
Generated using TypeDoc
Converts a column and row index to A1 notation.