+ Reply to Thread
Results 1 to 4 of 4

Web Scrap name from a webpage

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-04-2013
    Location
    USA
    MS-Off Ver
    Excel 365
    Posts
    266

    Web Scrap name from a webpage

    I have a spreadsheet with various identifying numbers (called NPIs) in column A (see attached). I am using the following website to lookup the name for each NPI number and place in column B:

    https://npiregistry.cms.hhs.gov/

    I notice after I type in the NPI number and click search, the resulting URL is always the same: https://npiregistry.cms.hhs.gov/regi...iew/xxxxxxxxxx with the x value being the NPI number. Is there a way to extract the name automatically without having to lookup each provider?

    Alternatively, I notice they have an API do accomplish this with JSON, but not sure how to integrate with Excel. The API webapge is at the following URL:

    https://npiregistry.cms.hhs.gov/registry/help-api

    Finally, I had solved this some time ago with another method as outlined in the link Excelforum.com link below, but they recently changed the website around which make the solution no longer work.

    http://www.excelforum.com/showthread...80#post3539780

    Any help is appreciated...
    Attached Files Attached Files

  2. #2
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Web Scrap name from a webpage

    Hello,

    1. Are you using Excel 64 bit (note this is not the same as windows 64-bit)
    2. Do you need this to work on a mac?

  3. #3
    Forum Contributor
    Join Date
    04-20-2015
    Location
    Switzerland
    MS-Off Ver
    2010
    Posts
    312

    Re: Web Scrap name from a webpage

    I Created a Function that gets the Resultstring from the API Website and then searches for the Name in the JSON String.
    Function Returns either
    "NPI not found" if there are no Results
    "Error in Request" if there is another problem
    Or the Name if everything worked

    As far as i know there are specific librarys that can handle Json but i went with a litttle mid and instr magic.
    I guess Regex would also work but i am not good with that :D

    Public Function getNpi(Number As String)
        On Error GoTo errorhandler:
        
        'Number = 1245319599
        Web_URL = "https://npiregistry.cms.hhs.gov/api/?number=" & Number
     
     
        With CreateObject("msxml2.xmlhttp")
            .Open "GET", Web_URL, False
            .send
            resultstring = .responseText
        End With
        
        emptyresult = "{" & """" & "result_count" & """" & ":0, " & """" & "results" & """" & ":[]}"
        
        If resultstring = emptyresult Then
            getNpi = "NPI not found"
            Exit Function
        End If
        
        searchstring = """" & "name" & """:"
        Namestart = InStr(1, resultstring, searchstring) + 9
        Nameend = InStr(Namestart, resultstring, ",") - Namestart - 1
        finalname = Mid(resultstring, Namestart, Nameend)
        getNpi = finalname
        Exit Function
    errorhandler:
        getNpi = "Error in Request"
    End Function
    
    
    Sub test()
    Debug.Print getNpi("1345319599")
    End Sub

  4. #4
    Forum Contributor
    Join Date
    09-04-2013
    Location
    USA
    MS-Off Ver
    Excel 365
    Posts
    266

    Re: Web Scrap name from a webpage

    Excellent. Thanks LordLoki. That function worked in retrieving the name..Will mark as SOLVED.

+ 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. Web scrap table
    By gerarddevries in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-06-2015, 07:52 AM
  2. [SOLVED] Scrap unwanted data
    By makinmomb in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-06-2014, 11:49 PM
  3. [SOLVED] Load webpage on TOPMAN website, extract prices from webpage into Spreadsheet
    By AKK9 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-04-2013, 11:49 AM
  4. Need help with scrap file!
    By jcrowe38 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 06-28-2012, 02:38 PM
  5. Using Excel to Minimize Scrap...
    By ozdemir in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-16-2009, 06:43 PM
  6. Minimizing Scrap...
    By ozdemir in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-11-2009, 11:54 PM
  7. Why is worksheet being saved as scrap? why does it have the .shs?
    By saved workbook trouble in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-03-2005, 01:05 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