Summary

You can get the first column (i.e. the starting column number) in a range with a formula based on the COLUMN function.

In the example shown, the formula in cell F5 is:

=MIN(COLUMN(data))

where data is a named range for B5:D10

Generic formula

=MIN(COLUMN(rng))

Explanation 

When given a single cell reference, the COLUMN function returns the column number for that reference. However, when given a range that contains multiple columns, the COLUMN function will return an array that contains all column numbers for the range. In the example shown the array looks like this:

{2,3,4}

If you want only the first column number, you can use the MIN function to extract just the first column number, which will be the lowest number in the array.

Simple version

Entered in a single cell, the COLUMN function will display only the first column number, even when it returns an array. This means, in practice, you can often just use the COLUMN function alone:

=COLUMN(rng)

However, inside formulas more complex formulas, it's sometimes necessary to make sure you are dealing with only one item, and not an array. In that case, you'll want to use MIN to pull out just the first item.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.