Hi, I am trying to figure out how to remove words that are shorter than 4 letters long from my data.
I only have one column starting at A2 (there is a header in A1).
Any help on this ASAP would be greatly appreciated.
Thanks
Hi, I am trying to figure out how to remove words that are shorter than 4 letters long from my data.
I only have one column starting at A2 (there is a header in A1).
Any help on this ASAP would be greatly appreciated.
Thanks
Hi and welcome to the forum
I think you need to explain in a bit more detail what you mean? is this words within a string, single words in a cell etc?
Perhaps provide a few samples of what you have and what you want?
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
If you only need to do it once, try inserting this formula in B2: =LEN(A2)
Copy the formula to the last row, then filter for those with 1, 2, 3, and delete accordingly.
I have almost 17,000 rows to do this for. How do I filter to show only the words that are 1,2,3 letters long?
Try this
![]()
Sub test() Dim a, i As Long With Range("a2", Range("a" & Rows.Count).End(xlUp)) a = .Value With CreateObject("VBScript.RegExp") .Global = True .Pattern = "\b\S{1,3}\b" For i = 1 To UBound(a, 1) a(i, 1) = Application.Trim(.Replace(a(i, 1), "")) Next End With .Value = a End With End Sub
Thanks!
I have sentences in each cell, for example: The alligator was swimming in the swamp. I want to remove words shorter than 4 letters so I want it to just display alligator swimming swamp.
Try using this UDF. Place it in a module in the workbook, and in cell B2, enter: =RemoveWords(A2)
and copy the formula to the last row.
![]()
Public Function RemoveWords(ByVal sText As String) Dim i As Long, v v = Split(sText, " ") For i = 0 To UBound(v) If Len(v(i)) < 4 Then v(i) = "" Next RemoveWords = Application.WorksheetFunction.Trim(Join(v, " ")) End Function
Last edited by millz; 10-29-2013 at 11:28 PM.
Not exactly sure why you had to hit F5.
See attached sample.
Hello,
Ambiguous name detected means you have 2 or more functions / sub with the same name (RemoveWords).
Other solution using Regular Expression. Select Range and run the macro :
![]()
Sub RemoveWords2() Dim c As Range For Each c In Selection With CreateObject("vbscript.regexp") .ignorecase = True .Global = True .Pattern = "\b\w{0,3}\b" c.Value = Replace(.Replace(c.Value, ""), " ", " ") End With Next c End Sub
GC Excel
If this post helps, then click the star icon (*) in the bottom left-hand corner of my post to Add reputation.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks