+ Reply to Thread
Results 1 to 9 of 9

Extracting numbers that appear after specific text

  1. #1
    Registered User
    Join Date
    06-17-2022
    Location
    Denver, Colorado
    MS-Off Ver
    2205
    Posts
    4

    Extracting numbers that appear after specific text

    Excel wizards!

    My question

    I'm trying to extract some voting statistics from lengthy text summaries that vary in form. Any help producing the right formulae for each column would be hugely appreciated.

    What numbers I'm looking for

    1. (To be extracted in one column) The voting numbers taking the form "X-Y" that appear immediately after the first time the phrase "House House Floor" appears
    2. (To be extracted in another column) The voting numbers taking the form "X-Y" that appear immediately after the first time the phrase "Senate Senate Floor" appears

    Some examples of the text I'm extracting from

    04/18/2022 - House Appropriations Committee P 39-0;04/21/2022 - House House Floor P 88-4;05/18/2022 - Senate Senate Floor P 38-0;05/19/2022 - House House Floor P 15-7

    04/07/2022 - House Retirement Committee P 8-0;04/18/2022 - House House Floor P 29-0;05/16/2022 - Senate Senate Floor P 32-0;05/19/2022 - House House Floor P 94-0

    01/12/2021 - INTRODUCED.;01/12/2021 - Filed as LR 58.;01/12/2021 - HOUSE refers to JOINT Committee on STATE AND LOCAL GOVERNMENT.;02/22/2021 - Work Session Held 02/17/2021.;03/10/2021 - From JOINT Committee on STATE AND LOCAL GOVERNMENT: with divided report.;03/11/2021 - HOUSE adopts Majority Committee Report: Ought to pass as amended

    02/22/2022 - Senate Senate Floor P 33-0

    I.e. the last two examples show that sometimes the voting statistics I'm looking for aren't there, in which case, I'd like to generate the text, "No information" in the relevant column(s)

    My attempts so far

    I initially was looking at just one sheet, in which the entries all more neatly took the form, "02/10/2022 - House House Floor P 77-0;03/15/2022 - Senate Senate Floor P 15-0"

    I pulled together this horrendously unwieldly chain of formulae in the attached.

    And then to my dismay, I realized that several entries take multiple forms with multiple mentions of House House Floor, other committees, not always separated by semicolon etc, so the attached will only work nicely for a couple of sheets (of which there are 20)

    Thanks so much again for any help you can provide!

    Best,
    RK94
    Attached Files Attached Files

  2. #2
    Forum Contributor Dante Amor's Avatar
    Join Date
    07-24-2020
    Location
    MEXICO
    MS-Off Ver
    Excel 2013
    Posts
    212

    Re: Extracting numbers that appear after specific text

    Hi and welcome to ExcelForo!

    Quote Originally Posted by RK94 View Post
    1. (To be extracted in one column) The voting numbers taking the form "X-Y" that appear immediately after the first time the phrase "House House Floor" appears
    ...

    not always separated by semicolon etc
    If not ";", what others?
    The following formula considers: space , . ;

    Please Login or Register  to view this content.
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    06-17-2022
    Location
    Denver, Colorado
    MS-Off Ver
    2205
    Posts
    4

    Re: Extracting numbers that appear after specific text

    Hey Dante Amor!

    Thanks so much for your reply.

    I've tried applying this formula to a couple of random cells, e.g., "02/15/2021 - House Ways and Means Committee P 16-8;02/22/2021 - House House Floor P 65-30;04/08/2021 - Senate Appropriations Committee P 11-2;04/13/2021 - Senate Senate Floor P 39-10;04/22/2021 - House House Floor P 96-2;04/22/2021 - Senate Senate Floor P 46-3" and it's returning "No information".

    I'm not sure I understand your approach - are you able to clarify how to make it return the result "65-30" in the example above?

    Apologies for my confusion / slow uptake and thanks again.

    Best,
    Rachel

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Extracting numbers that appear after specific text

    1. A non=working formula rarely helps.

    2. Several expected results, manually calculated, IN your sample sheet (not in the body of the post) does help considerably!

    3. I have allowed for UP TO 4 pairs of votes in each text box. If you need more, then the bits in red should be adjusted to be 2x the maximum number needed. So, if you need 6 pairs of votes... change to 12.

    =IFERROR(FILTERXML("<A><B>"&SUBSTITUTE(SUBSTITUTE(SUBSTITUTE($A2,"-"," "),";"," ")," ","</B><B>")&"</B></A>","//B[preceding::*["&1+MOD(SEQUENCE(,8)-1,2)&"]='P']["&INT(SEQUENCE(,8,1,1/2))&"]"),"")

    copied down.
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  5. #5
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Extracting numbers that appear after specific text

    On re-reading:

    =IFERROR(FILTERXML("<A><B>"&SUBSTITUTE(SUBSTITUTE(SUBSTITUTE($A2," P ","-"),";","-"),"-","</B><B>")&"</B></A>","//B[contains(preceding::*["&1+MOD((COLUMNS($B2:B2)-1),2)&"], 'House House')]["&1+INT((COLUMNS($B2:B2)-1)/2)&"]"),"")

    copied across and down and also this one, also copied across and down.

    =IFERROR(FILTERXML("<A><B>"&SUBSTITUTE(SUBSTITUTE(SUBSTITUTE($A2," P ","-"),";","-"),"-","</B><B>")&"</B></A>","//B[contains(preceding::*["&1+MOD((COLUMNS($F2:F2)-1),2)&"], 'Senate Senate')]["&1+INT((COLUMNS($F2:F2)-1)/2)&"]"),"")

    If incorrect, DUMP the non-working formulae in your sample sheet, addd representative examples and expected results.
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    06-17-2022
    Location
    Denver, Colorado
    MS-Off Ver
    2205
    Posts
    4

    Re: Extracting numbers that appear after specific text

    *** Update - removed attachment to avoid unnecessarily sharing info and posted what appears to be a solution below. Thanks again Glenn***

    Hi Glenn, wow - thanks so much for this.

    It looks the formula is working for a bunch of text entries but about half are still returning a blank erroneously (/an error without the iferror wraparound).

    I've followed your advice and included in the updated attachment ("Extract 2") a small subset of text entries (dates and statistics changed), and expected results (together with your formula in the middle for the House House Floor portion).

    Really appreciate any guidance you can share!

    Best,
    RK94
    Last edited by RK94; 06-18-2022 at 03:49 PM.

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,539

    Re: Extracting numbers that appear after specific text

    Administrative Note:

    Members will tailor the solutions they offer to the version (NOT release number) of Office (Excel, NOT Windows) that you have. Please check that your forum profile is up-to-date in this respect. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this. Thanks.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  8. #8
    Registered User
    Join Date
    06-17-2022
    Location
    Denver, Colorado
    MS-Off Ver
    2205
    Posts
    4

    Re: Extracting numbers that appear after specific text

    Ok so solved this way:
    =IFERROR(TRIM(SUBSTITUTE(LOWER(LEFT(MID(S2,FIND("house house floor p",LOWER(S2)),LEN(S2)),FIND(";",MID(S2,FIND("house house floor p",LOWER(S2)),LEN(S2))&";")-1)),"house house floor p","")),"No Information")
    =IFERROR(TRIM(SUBSTITUTE(LOWER(LEFT(MID(S2,FIND("senate senate floor p",LOWER(S2)),LEN(S2)),FIND(";",MID(S2,FIND("senate senate floor p",LOWER(S2)),LEN(S2))&";")-1)),"senate senate floor p","")),"No Information")
    Thanks again!

  9. #9
    Forum Contributor Dante Amor's Avatar
    Join Date
    07-24-2020
    Location
    MEXICO
    MS-Off Ver
    Excel 2013
    Posts
    212

    Re: Extracting numbers that appear after specific text

    Quote Originally Posted by RK94 View Post
    Hey Dante Amor!

    I'm not sure I understand your approach - are you able to clarify how to make it return the result "65-30" in the example above?
    The text to look for is in cell B1, that way you only write it once. The formula is simplified to this:

    =IFERROR(LEFT(SUBSTITUTE(REPLACE($A2,1,SEARCH(B$1,$A2)+LEN(B$1),""),";",REPT(" ",99)),99), "No information")

    By the way, this way there is no case sensitivity.
    Attached Files Attached Files
    Last edited by Dante Amor; 06-18-2022 at 04:17 PM.

+ 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. RE: Extracting Certain Numbers from a Text String Containing Several Numbers
    By EduardStoo in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 09-04-2018, 07:00 PM
  2. [SOLVED] Formula Extracting numbers and text between specific characters
    By keith81591 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-15-2018, 03:08 PM
  3. [SOLVED] Extracting specific words and numbers from a coloumn
    By piczim in forum Excel General
    Replies: 4
    Last Post: 08-03-2016, 10:14 AM
  4. Extracting first number from numbers and texts in specific cell
    By macky18 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-25-2014, 08:53 AM
  5. [SOLVED] extracting numbers from a string of text and numbers
    By ScottLor in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 04-05-2013, 04:47 PM
  6. Extracting numbers and text from inconsistent text/number formatted string
    By Brandivil in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-25-2013, 01:46 PM
  7. Replies: 17
    Last Post: 03-03-2010, 06:55 PM

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