Web query basics

touque

Board Regular
Joined
Jan 22, 2009
Messages
107
I am trying to create a web query of a site showing Masters scorecards.
I have only created one query some years ago which was also for the Masters tourney but nothing since. Tried a couple times without success.
So I found a good site showing all players scores for every hole but when I copy the url and try to paste it in the box (after hitting "Get Data", "Other Sources", "Web site") it just keeps spinning with "Connecting" message then eventually timing out.
How do I get around this? I am retrieving from Edge.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Anyone have any tips on how to connect?
I have found a good web page for the table I need.
 
Upvote 0
What is the website? I might be able to help if you discard the tool you're referring to.
 
Upvote 0
OK. That website is loading this URL with the data every few seconds:
https://www.masters.com/en_US/scores/feeds/2024/scores.json

If you copy paste that URL into any browser, you'll get the most recent data. However, I'm not sure which data you need from there, there are a lot of numbers and I'm not a Golf person, so I don't know what data you really need. If you can explain with some pictures, I'll tell you how to proceed.
 
Upvote 0
Thanks for the quick replies Edgar! I got pulled away yesterday afternoon but now am back attempting this project.
I tried entering that in the URL box of the Basic tab with no luck. So I am trying the Advanced tab. Is there anything else I should be entering?

1713105655056.png
 
Upvote 0
I do not have that tool, sorry. I can do that using VBA. The procedure is as follows:
1. Get the VBA-JSON parser here
2. Drag it/import it to your VBA window
3. Add this code to a module
VBA Code:
Option Explicit

Sub test()
    Dim url As String
    url = "https://www.masters.com/en_US/scores/feeds/2024/scores.json"
    
    Dim game2024 As Object
    Set game2024 = GetJsonData(url)

    'iterators
    Dim rw As Long
    Dim col As Long
    
    'add names
    rw = 4
    Dim member As Variant
    For Each member In game2024("data")("player")
        Cells(rw, 1) = member("display_name")
        rw = rw + 5
    Next member
    
    'add pars (assuming it's the same for all rounds)
    col = 3
    For Each member In game2024("data")("pars")("round1")
        Cells(3, col) = member
        col = col + 1
    Next member
    
    'add round 1 scores
    rw = 4
    col = 3
    Dim player As Long
    For player = 1 To game2024("data")("player").Count
        For Each member In game2024("data")("player")(player)("round1")("scores")
            Cells(rw, col) = member
            col = col + 1
        Next member
        col = 3
        rw = rw + 5
    Next player
    
    'add round 2 scores
    rw = 5
    col = 3
    For player = 1 To game2024("data")("player").Count
        For Each member In game2024("data")("player")(player)("round2")("scores")
            Cells(rw, col) = member
            col = col + 1
        Next member
        col = 3
        rw = rw + 5
    Next player
    
    'add round 3 scores
    rw = 6
    col = 3
    For player = 1 To game2024("data")("player").Count
        For Each member In game2024("data")("player")(player)("round3")("scores")
            Cells(rw, col) = member
            col = col + 1
        Next member
        col = 3
        rw = rw + 5
    Next player

    'add round 4 scores
    rw = 7
    col = 3
    For player = 1 To game2024("data")("player").Count
        For Each member In game2024("data")("player")(player)("round4")("scores")
            Cells(rw, col) = member
            col = col + 1
        Next member
        col = 3
        rw = rw + 5
    Next player
    
End Sub

Function GetJsonData(url As String) As Object
    Dim req As Object
    Set req = CreateObject("msxml2.xmlhttp")
    
    Dim json As Object
    Set json = CreateObject("scripting.dictionary")
    
    With req
        .Open "get", url, False
        .send
        Set json = ParseJson(.responsetext)
    End With
    
    Set GetJsonData = json
End Function
 
Upvote 0
You can do a few things more with the code (anything really), however, I certainly do not understand how the scoring system works. The calculations can be done directly from VBA. In the website, the JSON data that is retrieved every few seconds is utilized by the client to make the calculations necessary to show you a score. You would need to directly do the calculations with the data. Again, I do not understand Golf scores, so I can only show you how to extract the data that they use.

There's an alternative that is feasible as well, which is utilizing a tool like puppeteer, which works with JavaScript to extract the data. Browser automation tools of that kind open an browser that can be manipulated from outside -- typically Chromium-- this browser then goes to the website, waits until the content is loaded and then it extracts it any way you want. It can be triggered from Excel. IEXPLORE could probably do that as well, and using VBA, depends on whether the website can be run from that old browser. If you can open Edge from your version of Excel and automate it, you could utilize that approach as well.

Additionally, a bookmarklet could take care of all that. A bookmarklet is a bookmark that can run JavaScript code from your browser. With it, you can extract the data similar to a browser automation tool, but this one is triggered from the browser, not from Excel (well, you could, but that is a little more trouble that involves sockets or other tech).

Or find another source for this data.
 
Upvote 0
If you want to use Power Query, you'll need to set a couple of request headers, Accept and User-Agent.

The value for Accept would be...

VBA Code:
application/json, text/plain, */*

The value for User-Agent would be something like this...

VBA Code:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36

To find your User-Agent, have a look at the following link...



power_query.jpg



Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,215,203
Messages
6,123,627
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top