It is hard to imagine a function used more often with strings than the Len function. This simple little function returns the length of any string. The following are a few examples:
A = Len(MyString) B = Len("This is a test")
The first line returns the length of the characters in the variable MyString. The second returns the number of characters between the quote marks (in this case, 14—remember that spaces count as characters).
If you want to determine the length of the information in a particular cell, you follow a bit different approach:
C = Len(ActiveSheet.Range(ActiveWindow.Selection.Address))
When this line is executed, it returns the length of whatever is in the currently selected cell.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12404) 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: Determining the Length of a String.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
If you've got a list of potential words, and you want to know which of those potential words are real, you'll appreciate ...
Discover MoreWant to stop Excel from running any automatic macros that may be stored with a workbook? Here's how to do it.
Discover MoreWhen you have a macro that processes a huge amount of data, it can seem like it takes forever to finish up. These ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-01-09 22:43:17
Greg
The statement as shown in the tip is a fully qualified cell location within a workbook..specifically the actual currently selected cell.
You could use a similar statement to reference a cell on another sheet in the same workbook, or even a cell in another workbook so long as the file path was a constant...but I don't have the syntax handy to share.( ie, an external reference)
2017-01-07 19:13:50
Bob Beechey
To reveal the number of characters in active cell (string or not) you could use:
C = Len(ActiveCell.Text)
2017-01-07 17:51:18
John M
When I read the title of the tip, I didn't realize it was a VBA. For non VBA use, the LEN function works much the same way. For example "=LEN(D1)" (without the quotes) will return the length of the string in cell D1. This works with cells formatted as text or general.
2017-01-07 06:28:35
Alex B
Is the full specification,
Len(ActiveSheet.Range(ActiveWindow.Selection.Address)),
an Excel 2016 requirement ?
In Excel 2010 with selection being A2 both,
c = len(activecell)
c = len(cells(2,1))
seem to work fine for me.
I hear that Excel 2016 gets a bit tricker with the allowing of multiple windows.
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