Linked Questions

2 votes
1 answer
29k views

How can I parse json data in Excel vba without using "Microsoft scripting runtime"? My company considers "Microsoft scripting runtime" to be a security risk so I can't use it. I ...
rleir's user avatar
  • 821
0 votes
1 answer
3k views

I am parsing a JSON object in VBA. I found a code example on this forum that works great. However, one of the fields in the object is "total". in my code, I am trying to get the total, but "total" ...
pmeeks's user avatar
  • 3
2 votes
1 answer
301 views

My code to retrieve STRINGA: Private Sub RestExample() Dim APICall As String Dim Query As String Dim strKey As String, STRINGA AS STRING Dim myXML As New MSXML2.DOMDocument60 Dim ...
user1579247's user avatar
1 vote
1 answer
145 views

I'm trying to parse a simple JSON object. {"difficult:name and value with commas":"99,9%;100,00%","b":"very important value","date":"01/01/2023 ...
Mik's user avatar
  • 2,101
86 votes
16 answers
150k views

Is there a built-in way to URL encode a string in Excel VBA or do I need to hand roll this functionality?
Matthew Murdoch's user avatar
44 votes
16 answers
110k views

I am trying to consume a web service in VB6. The service - which I control - currently can return a SOAP/XML message or JSON. I am having a really difficult time figuring out if VB6's SOAP type (...
Ben McCormack's user avatar
25 votes
6 answers
63k views

Per example below...Looping through an object from a parsed JSON string returns an error "Object doesn't support this property or method". Could anyone advise how to make this work? Much appreciated ...
rr789's user avatar
  • 660
24 votes
2 answers
25k views

What is the operator or function to test whether two variables of the same custom object type refer to the same object? I've tried If myObject = yourObject Then But get a runtime error 438 object ...
Swiftslide's user avatar
  • 1,357
25 votes
3 answers
159k views

I have a json like below: {"sentences":[{"trans":"something ru","orig":"english word","translit":"Angliyskoye slovo","src_translit":""}], "src":"en","server_time":69} and parse it: Function ...
LA_'s user avatar
  • 20.5k
12 votes
3 answers
34k views

I am trying to use the solution given to this, however, whenever I try to run the most basic anything, I get an Object not Defined error. I thought this would be my fault (not having installed ...
Proto's user avatar
  • 157
12 votes
2 answers
56k views

My company has a vendor providing a JSON feed of data that I need to load into our MS Access database every two hours. I need to: load the data from the feed, parse the JSON into a usable format for ...
Martin O'Neill's user avatar
5 votes
3 answers
24k views

I have the following json array which you can easily access at the below url: https://crowdfluttr.firebaseio.com/test/array.json It has the following output: {"-0p":{"date":"2015-01-01","string":"...
Chris's user avatar
  • 5,904
8 votes
1 answer
18k views

I have seen How can I send an HTTP POST request to a server from Excel using VBA? and the MacOS-friendly response that describes how to retrieve data from an HTTP endpoint using QueryTables. It ...
Cheeso's user avatar
  • 193k
4 votes
2 answers
30k views

I'm calling a web service in VB6 which returns a json string as response. I'm able to hold the response in a string. now I want to show the each parameter separately how can I extract the values from ...
Suman Kumar's user avatar
4 votes
3 answers
17k views

I have a macro that send an XMLHTTP request to a server and it gets as response a plain text string, not a JSON format string or other standard formats (at least for what I know). I would like to ...
MeSS83's user avatar
  • 459

15 30 50 per page