+ Reply to Thread
Results 1 to 11 of 11

\Want to separate words

Hybrid View

  1. #1
    Registered User
    Join Date
    06-12-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    86

    Thumbs down \Want to separate words

    Hello Friends,
    I have some query regarding how to separate a words like this "CurrentAssetsLongTerm" as Current Assets Long Term. Since there are no spaces or semi colon, am unable to seperate them. I need to used vlook in the seperated text , so if any of you may help, it would be my pleasure. Could not attempt manually as there are more than 20,000 words like them? Kindly help and revert ASAP.

    Regards,
    Kamal

  2. #2
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: \Want to separate words

    Hi

    Maybe a UDF

    Option Explicit
    Function Replace_Words(Myrange As String)
        Dim RegEx  As Object, RegMatchCollection As Object, RegMatch As Object, OutPutStr As String
        Replace_Words = Myrange
        Set RegEx = CreateObject("vbscript.regexp")
        With RegEx
            .Global = True
            .Pattern = "([A-Z][a-z]+)"
            If .Test(Myrange) Then
            Set RegMatchCollection = .Execute(Myrange)
            For Each RegMatch In RegMatchCollection
                OutPutStr = OutPutStr & " " & RegMatch
            Next
            Replace_Words = OutPutStr
             End If
            End With
        Set RegEx = Nothing
    End Function
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

  3. #3
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: \Want to separate words

    or even this pattern
    .Pattern = "([A-Z^\s][a-z]+)"

  4. #4
    Registered User
    Join Date
    06-12-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    86

    Re: \Want to separate words

    Thanks for replying , but the problem is that i dont understand VBA.....Is there any other way out to seperate the words by general excel given formula or group of formulas.

    Regards,

    Kamal

  5. #5
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: \Want to separate words

    you can add the UDF by pressing "Alt" + "F11" to open the visual basic editor
    add a code module and past the code into it .. its not hard

  6. #6
    Registered User
    Join Date
    06-12-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    86

    Re: \Want to separate words

    am Attaching a sample file , kindly revert with the formula or even VBA code with instruction as how to change the range of data .
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    06-11-2012
    Location
    Bangalore
    MS-Off Ver
    Excel 2007
    Posts
    86

    Thumbs up Re: \Want to separate words

    Hi,

    Help in excel required..xlsm
    This is the file having the code posted as above

    This sheet contains the function which will work as other function only u have to pass a input reference.
    if u want to use this function in your system regularly .

    create the copy of this file and then save it with any name but having an extention .xlam .and open it and start using this function.
    this will create a addin where u r not required to copy paste this Code again and again.


    Thanks

  8. #8
    Registered User
    Join Date
    06-12-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    86

    Re: \Want to separate words

    thanks ! Thanks a ton. Got it ......Hats off for you .

  9. #9
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: \Want to separate words

    A3
    =MID(A3,MATCH(TRUE,EXACT(MID(A3,ROW($1:$28),1),PROPER(MID(A3,ROW($1:$28),1))),0),MATCH(TRUE,EXACT(MID(A3,ROW($2:$28),1),PROPER(MID(A3,ROW($2:$28),1))),0))&" "&MID(A3,MATCH(TRUE,EXACT(MID(A3,ROW($2:$28),1),PROPER(MID(A3,ROW($2:$28),1))),0)+1,255)
    entered with Control + shift + enter
    its not finnished but time to retire for the night

  10. #10
    Valued Forum Contributor
    Join Date
    02-08-2012
    Location
    wales
    MS-Off Ver
    Excel 2007
    Posts
    964

    Re: \Want to separate words

    are they all started with capital leters?
    The Importance of INDEX - A GUIDE TO INDEX'S OTHER USES
    <--- If a post helps hit the star

  11. #11
    Registered User
    Join Date
    06-12-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    86

    Re: \Want to separate words

    yes ! Thanks Again .

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1