How to Delimit without Splitting Words (Text to Columns) ?

jrocco

New Member
Joined
Mar 26, 2012
Messages
8
In the attached sample file, I need to separate Column B (Asset Description)into 3 columns. The maximum number of characters per column is 43 characters. However, it is important that no words are split down the middle. If the original data is less than 43 characters to begin with, it can remain in one column. A Space between words can be used to judge the definition of a "complete word", but traditional Text To Columns doesn't work because it doesn't recognize character count.

This is a sample with a 4 lines of data, but my actual data file is over 900 so it is impractical to perform manually.

Any ideas?

Asset NumberAsset Description
EXCONTVCAT 0692692 CAT DOZER MODEL 973; SERIAL/VIN# 973CELDX00452; OWNED; YR 2009
EXCONTVCRLOAD 0691691 CATERPILLER LOADER S/N CAT0973CHBCPOO194 M# 973C YR 2005 OWNED
EXCONTVGRADALL 0618618 TRACK GRADALL S/N 5210000840 MODEL XL5210
EXCONTVKOMATSU 0681681 KOMATSU 6 WAY BLADE DOZER

<tbody>
</tbody>
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Perhaps this
Code:
Sub test()
    Dim Result() As String
    Dim strRaw As String, RawWords As Variant
    Dim i As Long, j As Long, Pointer As Long
    Dim strResult As String
    Dim DataRange As Range
    With Sheet1.Range("B:B")
        Set DataRange = Range(.Cells(2, 1), .Cells(Rows.Count, 1).End(xlUp))
    End With
    ReDim Result(1 To DataRange.Rows.Count, 1 To 4)
    
    For i = 1 To DataRange.Rows.Count
        strRaw = DataRange.Cells(i, 1).Value
        If strRaw <> vbNullString Then
            RawWords = Split(strRaw, " ")
            
            Pointer = 0: j = 1
            strResult = RawWords(Pointer)
            Pointer = Pointer + 1
            Do
                If Len(strResult & " " & RawWords(Pointer)) > 43 Then
                    Rem put result in array
                    Result(i, j) = strResult
                    j = j + 1
                    strResult = RawWords(Pointer)
                    Pointer = Pointer + 1
                Else
                    strResult = strResult & " " & RawWords(Pointer)
                    Pointer = Pointer + 1
                End If
            Loop Until UBound(RawWords) < Pointer
            If j < 5 Then Result(i, j) = strResult
        End If
    Next i
    DataRange.Offset(0, 2).Resize(, 4).Value = Result
End Sub
 
Upvote 0
This probably won't work for your 900+rows but should point you in the right direction. I had to guess at a character that doesn't appear in any of the descriptions. I've used @ but you might need to change to something else
C2

PHP:
=IF(LEN(B2)<=43,B2,LEFT(B2,FIND("@",SUBSTITUTE(B2," ","@",LEN(LEFT(B2,43))-LEN(SUBSTITUTE(LEFT(B2,43)," ",""))))))
D2
PHP:
=IF(LEN(B2)-LEN(C2)<=43,SUBSTITUTE(B2,C2,""),LEFT(MID(B2,LEN(C2)+1,43),FIND("@",SUBSTITUTE(MID(B2,LEN(C2)+1,43)," ","@",LEN(LEFT(MID(B2,LEN(C2)+1,43),43))-LEN(SUBSTITUTE(LEFT(MID(B2,LEN(C2)+1,43),43)," ",""))))))
E2
PHP:
=IF(LEN(B2)-LEN(C2)-LEN(D2)<=43,SUBSTITUTE(B2,C2&D2,""),LEFT(MID(B2,LEN(C2)+LEN(D2)+1,43),FIND("@",SUBSTITUTE(MID(B2,LEN(C2)+LEN(D2)+1,43)," ","@",LEN(LEFT(MID(B2,LEN(C2)+LEN(D2)+1,43),43))-LEN(SUBSTITUTE(LEFT(MID(B2,LEN(C2)+LEN(D2)+1,43),43)," ",""))))))
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,580
Members
449,174
Latest member
chandan4057

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top