COLUMN

COLUMN(reference)

Returns the column number of a cell reference.

reference(Optional) The cell or range of cells which you want the column number for.

REMARKS
* This function can return multiple values.
* This function can create a Dynamic Array Formula.
* The "reference" can be a cell reference or a named range.
* The "reference" cannot refer to multiple areas.
* If "reference" is left blank, then the reference of the cell containing the function is used.
* If "reference" is a range of cells, then the cell in the top left corner of the reference is used.
* If "reference" is a range of cells referring to more than one column, then a dynamic array formula is returned.
* You can use the ADDRESS function to return the cell reference given a row and column number.
* You can use the COLUMNS function to return the number of columns in a cell range or reference.
* You can use the ROW function to return the row number of a cell reference.
* You can use the ROWS function to return the number of rows in a cell range or reference.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 ABCD
1=COLUMN() = 1=COLUMN() = 2510
2=COLUMN(B1) = 2  20
3=COLUMN(D1) = 4   
4=COLUMN(D1:D2) = 4   
5=COLUMN(C1:D1) = { 3, 4 }   

1 - What column numbers are these formulas in.
2 - What column number is the cell range "B1".
3 - What column number is the cell range "D1".
4 - What column number is the cell range "D1:D2". This cell reference refers to a single column.
5 - What column number is the cell range "C1:D1". This cell reference spans two columns.

© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top