Sometimes you may need to create a worksheet formula that examines the left-most characters in a different cell. To allow for this need, Excel provides the LEFT worksheet function. You use it by specifying the cell or value to use, along with the number of character to return. For instance, the following formula returns the three left-most characters in cell A7:
=LEFT(A7,3)
If the value in A7 is not text, then LEFT still treats it as if it is. Thus, if A7 contains 12345, then the above formula returns the text value 123.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2488) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Returning the Left-most Characters.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Want to repeat cell contents over and over again within a single cell? Excel provides two ways you can duplicate the content.
Discover MoreThe PROPER worksheet function is used to change the case of text so that the first letter of each word is capitalized. If ...
Discover MoreYou may want to use Excel to display dates using a different language than your normal one. There are a couple of ways ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2014-02-24 02:46:18
Great! it works with both LEFT and RIGHT commands.
2014-02-21 08:29:59
Jim Autrey
Excellent. Thanks, Peter. I'll add this routine to my personal.xlsb file.
2014-02-20 23:06:04
Peter Moran
Hi Jim,
I had this problem and found and modified the following:
Sub TrimALL()
' David McRitchie 2000-07-03 mod 2000-08-16 join.htm
' Trims Unwanted Chars from Cell Selection
' Loaded 22/5/03
'
Dim Cell As Range
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'Also Treat CHR 0160, as a space (CHR 032)
Selection.Replace What:=Chr(160), Replacement:=Chr(32), _
LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
'Trim in Excel removes extra internal spaces, TRIM in VBA does not
On Error Resume Next 'in case no text cells in selection
For Each Cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
Cell.Value = Application.Trim(Cell.Value)
Next Cell
On Error GoTo 0
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
Peter Moran
2014-02-19 06:11:56
Jim Autrey
Thank you. I'll try that the next time I get a file that I can’t trim correctly.
2014-02-19 05:35:34
Michael (Micky) Avidan
@Jim,
=CODE(LEFT(A1)) will return the left most characters CODE.
The frequent NON-PRINTABLE characters codes are: 160, 254, 32 - where 32 reppresents a Space.
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2014)
ISRAEL
2014-02-18 05:12:30
Jim Autrey
Thanks.. Yes, TRIM usually works, but there are times when the alpha numeric characters are a specific distance from the left and are not deleted using TRIM. And no, the cell is not indented.
What I need is a "stronger" TRIM - one that deletes everything but alpha-numeric characters. Or, maybe a way to find out what the specific character is that TRIM won't delete.
Thanks for the post.
2014-02-17 09:21:53
Michael (Micky) Avidan
@Jim,
The function: TRIM will be more than happy to assist you.
Check it out in Excel's Help.
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2014)
ISRAEL
2014-02-16 15:58:25
Jim Autrey
Sometimes, there are one or more spaces preceding the alpha-numeric characters in the cell. Does Excel have a function to ignore the spaces? I'm sure a macro would be easy to set up, but a function would be simpler.
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments