+ Reply to Thread
Results 1 to 6 of 6

Pull values after specific word

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-11-2009
    Location
    Toronto
    MS-Off Ver
    Excel 2010
    Posts
    517

    Pull values after specific word

    Hi, can someone please help with vba code where i pull date and account # from cell and put it in another cell.

    For example if in column C contains "DATE IS 10-10-2015, ACCOUNT# 123456789"
    I would like just the date in another column and account in another column. Dates and Account are not always in the same order. it can be a mixture. I think i would require something where if the words "DATE IS" is found in cell then pull the date and if the word "Account" is found then take the account # and put them in respective column A and B. Thanks for help

    Result should be
    Column A Column B
    10-10-2015 123456789

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Pull values after specific word

    Hi,

    Assuming the date strings are always 10 characters then in A1
    Formula: copy to clipboard
    =DATE(MID(C1,SEARCH("Date is",C1)+14,4),MID(C1,SEARCH("Date is",C1)+11,2),MID(C1,SEARCH("Date is",C1)+8,2))


    and assuming the Account # is always 9 digits then in B1

    Formula: copy to clipboard
    MID(C1,SEARCH("#",C1)+2,9)
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Pull values after specific word

    Maybe:

    Sub biznezx()
    Dim i As Long
    Range("A2:A" & Range("A" & Rows.Count).End(3).row).TextToColumns Range("A2"), xlDelimited, xlDoubleQuote, False, True, False, True, False, True
    For i = 2 To Range("A" & Rows.Count).End(3).row
        If Left(Cells(i, "A"), 4) = "ACCO" Then
            Cells(i, "B").Cut
            Cells(i, "A").Insert xlToRight
        End If
    Next i
    End Sub

  4. #4
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Pull values after specific word

    Enter formula in A1 and pull it to B1

    Formula: copy to clipboard
    =CHOOSE(COLUMNS($A:A),MID($C1,FIND("-",$C1)-2,10),MID($C1,SEARCH("#",$C1)+2,9))


    Data Range
    A
    B
    C
    1
    10-10-2015
    123456789
    DATE IS 10-10-2015, ACCOUNT# 123456789
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  5. #5
    Forum Contributor
    Join Date
    12-11-2009
    Location
    Toronto
    MS-Off Ver
    Excel 2010
    Posts
    517

    Re: Pull values after specific word

    Thanks Guys but i was looking for something more like this. So far its working ok

        Dim c As Range
    
        Dim iCol As Integer
    
        iCol = 1
        For Each c In Range("A1", Range("A65536").End(xlUp))
            If InStrRev(c, "DATE IS") <> 0 Then
                iCol = iCol + 1
                Cells(1, iCol) = Mid(c, InStrRev(c, "DATE IS") + 8, 8)
                Cells(1, iCol + 1) = Mid(c, InStrRev(c, "ACCO") + 4, 10)
            End If
        Next c

  6. #6
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Pull values after specific word

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Pull first word if one word , pull first if two words
    By makinmomb in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-12-2015, 04:22 PM
  2. Replies: 2
    Last Post: 06-10-2015, 12:12 AM
  3. Replies: 2
    Last Post: 06-09-2015, 11:20 PM
  4. [SOLVED] Combine two cell values to pull from specific Named Range
    By vamosj in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-13-2014, 06:08 PM
  5. VBA Trying to pull specific Word table cells into specific Excel cells
    By ez08mbba in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-16-2012, 01:11 PM
  6. Count Specific Text Values in a Word Table Formula
    By cpg3 in forum Word Programming / VBA / Macros
    Replies: 1
    Last Post: 02-02-2012, 09:37 PM
  7. Pull out specific values from numerous workbooks
    By jimmy1981 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 12-21-2010, 04:19 AM

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