Excel includes a nifty little worksheet function that lets you determine the column number of a particular cell reference. Normally columns are designated as A, B, C, and so on, but the COLUMN function returns a numeric value that represents the column. Thus, column A is 1, B is 2, and so on.
The simplest way to use the function is in the following manner:
=COLUMN()
When used in this manner, COLUMN returns the column number of the cell in which the COLUMN function is used. Thus, if cell C5 contained =COLUMN(), then the function would return a value of 3.
You can also include a range reference as a parameter to the COLUMN function, in this manner:
=COLUMN(B4)
This usage would return 2, since column B is the second column in the worksheet. You could also, if desired, specify a range:
=COLUMN(B3:G3)
If you enter this formula in a cell, it still returns 2, since column B is the leftmost cell in the specified range. However, if you select a range of horizontal cells (say, the range of D18:I18) and enter this as an array formula, then D18:I18 will contain 2, 3, 4, 5, 6, and 7. In other words, COLUMN returns a horizontal array that reflects the column numbers of each cell in the initial range (B3:G3).
Another way to see how this works is the following formula:
=INDEX(COLUMN(B3:G3),1,3)
This formula returns 4 because you asked for the third element in the array returned by the COLUMN function. That element is the column number for column D, which is the fourth column.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10103) applies to Microsoft Excel 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Excel here: Using the COLUMN Function.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
The SUMIFS function can be quite powerful in conditionally summing information based on criteria you specify. This tip ...
Discover MoreWhen you filter data, Excel displays only a portion of what is really in a worksheet. If you want to count the number of ...
Discover MoreIf you need to count the number of blank cells in a range, the function to use is COUNTBLANK. This tip discusses the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-01-07 05:56:10
Brian
I like this !
And you can use it like the Row highlighting in the other tip, or you can combine them as in
=MOD(ROW(),2)+MOD(COLUMN(),2)=0
to get every second cell marked. But maybe that way madness lies !
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments