+ Reply to Thread
Results 1 to 7 of 7

Substrings from String

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-10-2008
    Location
    Austin
    Posts
    660

    Substrings from String

    Hi all,

    I'm trying to break down a string and put parts into designated cells using the following
    code. I'm not sure what's causing the problem, but the substring results are not correct.

    
    Sub BOMINSERT_HEADERS()
    Dim OutPL As Worksheet
    Dim SText As String
      Sheets("BOM_INSERT").Activate
      SText = Cells(2, "B").Value
    
     Set OutPL = Sheets("BOM")
       OutPL.Cells(3, "C") = SText
      ' OutPL.Cells(6, "C") = SText
      ' OutPL.Cells(7, "C") = SText
      ' OutPL.Cells(8, "C") = SText
      ' OutPL.Cells(9, "C") = SText
     
     
     
      Sheets("BOM").Activate
     Cells(6, "C") = WorksheetFunction.Substitute(Cells(3, "C"), "\", "~", 3)
     Cells(6, "C") = Right(Cells(6, "C"), InStr(1, Cells(6, "C"), "~") - 1)
     'Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "~", 3)
     Cells(9, "C") = Right(Cells(6, "C"), InStr(1, Cells(6, "C"), "\"))
     Cells(8, "C") = WorksheetFunction.Substitute(Cells(8, "C"), "\", "~", 3)
     Cells(8, "C").Value = Right(Cells(8, "C"), InStr(1, Cells(8, "C").Value, "~") - 1)
      'Cells(6, "C") = WorksheetFunction.Substitute(Cells(3, "C"), "\", "~", 3)
     Cells(6, "C") = Left(Cells(6, "C"), InStr(1, Cells(6, "C"), "\") - 1)
       'OutPL.Cells(9, "C").Value = OutPL.Cells(7, "C").Value
    ' Cells(9, "C") = WorksheetFunction.Substitute(Cells(9, "C"), "\", "~", 1)
     'Cells(9, "C").Value = Left(Cells(8, "C"), InStr(1, Cells(8, "C"), "\") - 1)
      'Cells(9, "C").Value = Right(Cells(9, "C"), InStr(1, Cells(9, "C"), "\") - 1)
    End Sub
    Attached also is an example booklet. I've given an example of a 2nd string possiblity
    that I'd like to have broken down if possible.

    Any help getting this working is appreciated.

    Thanks

    BDB
    Attached Files Attached Files
    Last edited by bdb1974; 02-23-2010 at 05:08 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Substrings from String

    Based on your sheeet, the following worksheet formulas give you the results you want. ALL four formulas have to be there for the second one to work, it is dependent on formulas 1 and 3.

    In C6: =IF(ISNUMBER(SEARCH("4WW", $C$3)), "4WW", IF(ISNUMBER(SEARCH("4PY", $C$3)), "4PY", "neither"))
    In C7: =MID($C$3,SEARCH($C$6,$C$3)+LEN($C$6)+1,SEARCH($C$8,$C$3)-(SEARCH($C$6,$C$3)+LEN($C$6)+1))
    In C8: =IF(ISNUMBER(SEARCH("UG Feeder", $C$3)), "UG Feeder", "UG")
    In C9: =MID($C$3,SEARCH("|",SUBSTITUTE($C$3,"\","|",LEN($C$3)-LEN(SUBSTITUTE($C$3,"\",""))))+1,99)

    Maybe that will help you design the macro.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Contributor
    Join Date
    12-10-2008
    Location
    Austin
    Posts
    660

    Re: Substrings from String

    Thanks JBeaucaire for your input. I'm just wondering how within the formuals ,I'm going to sub in a variant for the Search fields? I tried subsituting one of the slant bars,"\" in the string to a "~" as a reference point /marker. Then I was hoping to transfer only the section of the string that was on the side of the marker that I was needing for the designated cell. :/

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Substrings from String

    I did that with the 4th formula, I just used the pipe character instead of tilde. Tilde has meaning in VBA such that I don't use it.

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Substrings from String

    Simplest would be to put the formulas in the cells and leave them there. As soon as you enter a new value in C3, you have your values and can copy them elsewhere.

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Substrings from String

    Hello bdb1974,

    Here is a macro to split up the string. Since string manipulation in VBA and Excel is limited to simple operations, this macro uses VB Script's Regular Expressions to perform pattern matching, string extraction, and replacement. I know this looks like gibberish, but is a very powerful and flexible way to manipulate strings. For anyone who is serious about programming or working web pages, this is a must have tool. This macro has been added to the attached workbook.
    Sub ExtractStrings()
    
      Dim RegExp As Object
      Dim S As String
      Dim Z As String
      Dim Wks As Worksheet
      
        Set RegExp = CreateObject("VBScript.RegExp")
        RegExp.IgnoreCase = True
        
        Set Wks = Worksheets("BOM")
        S = Worksheets("BOM_INSERT").Range("B2")
        
         'Extract the file name
          RegExp.Pattern = "(.+)(\\.+\.\w{1,4})$"
          Z = RegExp.Replace(S, "$2")
          Wks.Range("C9") = Right(Z, Len(Z) - 1)
        
         'Reduce string to 3 digit code, location & description
          S = Left(S, Len(S) - Len(Z))
          RegExp.Pattern = "(.+\\)(.+)"
          S = RegExp.Replace(S, "$2")
        
         'Extract description - UG and the word following it
          RegExp.Pattern = "^(.*)(\sUG)(\s+\w+)?(.*)$"
          Wks.Range("C8") = LTrim(RegExp.Replace(S, "$2$3"))
          S = RegExp.Replace(S, "$1")
        
         'Extract the 3 digit code and location
          RegExp.Pattern = "(\w+)(\-)?(.+)"
          Wks.Range("C6") = RegExp.Replace(S, "$1")
          Wks.Range("C7") = LTrim(RegExp.Replace(S, "$3"))
        
        Set RegExp = Nothing
        
    End Sub
    Attached Files Attached Files
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  7. #7
    Forum Contributor
    Join Date
    12-10-2008
    Location
    Austin
    Posts
    660

    Re: Substrings from String

    Thanks Leith,

    Here's another method that I finally came up with and used after playing around with some code.

    Sub BOMINSERT_HEADERS()
      Dim OutPL As Worksheet
      Dim Startrow As Variant
      Dim SText As String
    
    
     ' ThisWorkbook.Activate
    '   **********************************
    
      
    
      Application.ScreenUpdating = False
    
        Sheets("BOM_INSERT").Activate
      UnProtectShts
      SText = Cells(2, "B").Value
    
     Set OutPL = Sheets("BOM")
       OutPL.Cells(6, "C") = SText
        OutPL.Cells(7, "C") = SText
     OutPL.Cells(18, "C").Value = SText
     
     OutPL.Cells(4, "C") = SText
     
     
      Sheets("BOM").Activate
      
      'The following 3 lines are not reliable.  In Excel VBA, using WorksheetFunction spaces, "" gets confused with the backwards slash bar, "\".
    '  Cells(4, "C") = Right(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
    'Cells(4, "C") = Right(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
    'Cells(4, "C") = Left(Cells(4, "C"), (Len(Cells(4, "C")) - WorksheetFunction.Find("\", Cells(4, "C"), 1)))
    
    
     Cells(18, "C") = WorksheetFunction.Substitute(Cells(18, "C"), "\", "|", 4)
     Cells(18, "C") = Left(Cells(18, "C"), InStr(1, Cells(18, "C"), "|"))
        If InStr(1, Cells(18, "C").Value, "|") > 0 Then
            arr = Split(Cells(18, "C").Value, "|")
            Cells(18, "C").Value = arr(0)
            End If
            
      Cells(6, "C") = WorksheetFunction.Substitute(Cells(6, "C"), "\", "|", 3)
           If InStr(1, Cells(6, "C").Value, "|") > 0 Then
            arr = Split(Cells(6, "C").Value, "|")
            Cells(8, "C").Value = arr(1)
            End If
       Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 3)
       
     'Cells(6, "C") = Right(Cells(6, "C"), InStr(1, Cells(6, "C"), "|") - 1)
      Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 4)
         'Cells(8, "C").Value =
           If InStr(1, Cells(7, "C").Value, "|") > 0 Then
            arr = Split(Cells(7, "C").Value, "|")
            Cells(7, "C").Value = arr(1)
            End If
         Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 2)
          If InStr(1, Cells(8, "C").Value, "|") > 0 Then
            arr = Split(Cells(8, "C").Value, "|")
            Cells(8, "C").Value = arr(1)
            End If
            
          Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
          If InStr(1, Cells(8, "C").Value, "|") > 0 Then
            arr = Split(Cells(8, "C").Value, "|")
            Cells(9, "C").Value = arr(1)
            End If
            
          Cells(7, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
         'Cells(8, "C").Value =
           If InStr(1, Cells(7, "C").Value, "|") > 0 Then
            arr = Split(Cells(7, "C").Value, "|")
            Cells(7, "C").Value = arr(0)
            End If
            
               Cells(8, "C") = WorksheetFunction.Substitute(Cells(7, "C"), "\", "|", 1)
         'Cells(8, "C").Value =
           If InStr(1, Cells(7, "C").Value, "|") > 0 Then
            arr = Split(Cells(7, "C").Value, "|")
            Cells(8, "C").Value = arr(1)
            End If
            
            
              Cells(6, "C") = WorksheetFunction.Substitute(Cells(7, "C"), " ", "|", 1)
           If InStr(1, Cells(6, "C").Value, "|") > 0 Then
            arr = Split(Cells(6, "C").Value, "|")
            Cells(6, "C").Value = arr(0)
            End If
            
            If InStr(1, Cells(8, "C").Value, "-") > 0 Then
            Cells(8, "C") = (WorksheetFunction.Substitute(Cells(8, "C"), "-", "|", 1))
            arr = Split(Cells(8, "C").Value, "|")
            Cells(8, "C").Value = arr(1)
            Cells(8, "C") = Right(Cells(8, "C"), (Len(Cells(8, "C")) - WorksheetFunction.Find(" ", Cells(8, "C"), 1)))
            If InStr(1, Cells(8, "C").Value, " ") > 0 Then
            Cells(8, "C") = Left(Cells(8, "C"), (Len(Cells(8, "C")) - WorksheetFunction.Find(" ", Cells(8, "C"), 1)))
            End If
            Else
            Cells(8, "C").Value = ""
            End If
            
         If InStr(1, Cells(7, "C").Value, " ") > 0 Then
           Cells(7, "C") = (WorksheetFunction.Substitute(Cells(7, "C"), " ", "|", 1))
            arr = Split(Cells(7, "C").Value, "|")
          Cells(7, "C").Value = arr(1)
            End If
                 If InStr(1, Cells(7, "C").Value, "-") > 0 Then
           Cells(7, "C") = (WorksheetFunction.Substitute(Cells(7, "C"), "-", "|", 1))
            arr = Split(Cells(7, "C").Value, "|")
          Cells(7, "C").Value = arr(0)
            End If
            
    
    
    
    End If
    End With
    With ThisWorkbook.Sheets("BOM")
    Cells(1, 1).Select
    End With
    
    
    
    Set FSO = Nothing
    Set fs = Nothing
    
    End Sub
    Thanks for everyone's help.

    BDB

+ 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