About 8,060,000 results
Open links in new tab
  1. Parsing JSON to Excel using VBA - Stack Overflow

    Aug 26, 2019 · Here is VBA example showing how the JSON sample by the link can be converted to 2D array and output to worksheet. Import JSON.bas module into the VBA project for JSON processing. Dim sJSONString As String.

  2. Import Data from JSON File with Excel VBA - Creative Blog

    Mar 28, 2025 · This code is an Excel VBA macro designed to import data from a JSON file into an Excel worksheet. Here’s a breakdown of the key components: File Selection Dialog; JSONFilePath = Application.GetOpenFilename("JSON Files (*.json), *.json", , "Select JSON File")

  3. How to Import & Parse JSON Data with VBA - My Excel Genius

    Read on to discover the easiest and fastest method to get JSON data into Excel... You’ve got several approaches to parsing data from the web which is in JSON format: You could write your own VBA code to parse the JSON data. This approach is only recommended if you have acute masochistic tendencies.

  4. How to parse JSON with VBA without external libraries?

    Set sc = CreateObject("ScriptControl"): sc.Language = "JScript" Set jsonDecode = sc.Eval("(" + jsonString + ")") In result arr contains values like below (checked at Watches): - sentences (type: Variant/Object/JScriptTypeInfo) - 0 (type: Variant/Object/JScriptTypeInfo) - orig (type: Variant/String) - trans (type: Variant/String) ...

  5. VBA-tools/VBA-JSON: JSON conversion and parsing for VBA - GitHub

    JSON conversion and parsing for VBA (Windows and Mac Excel, Access, and other Office applications). It grew out of the excellent project vba-json , with additions and improvements made to resolve bugs and improve performance (as part of VBA-Web ).

  6. Convert Json to csv and csv to Json in Excel VBA - Coding is Love

    Oct 25, 2017 · A step by step tutorial explaining how to read a file, write a file, convert JSON to CSV and CSV to JSON programmatically using Excel VBA.

  7. vba - Import json data into Excel - Super User

    Aug 22, 2011 · A very simplified example of the json file has the following structure: { [ { 'a': 10, 'b': 20 }, { 'a': 20, 'b': 22 }, { 'a': 11, 'b': 24 } ] } I want to convert it to Excel in which each record becomes a row in excel with the selected parameters as the column headers.

  8. Import Json to excel and export excel to Json (Updated 2022)

    Sep 11, 2022 · Excel doesn't have built-in support for JSON. Learn how to parse JSON in Excel VBA, import JSON to Excel and export Excel data using VBA-JSON.

  9. get data from a JSON string with VBA Excel - Stack Overflow

    Feb 12, 2021 · I would like to get data from a JSON-String, which is in a JSON-Array, with VBA to display the data into an Excel-Worksheet. I'm using the library (VBA-JSON v2.3.1 JsonConverter) I have the following JSON-Object. "messageSource":"cc", "externalSourceId":123, "messageId":"blabla", "internalDeviceId":66, "externalDeviceId":"123456789",

  10. JSON to Excel using VBA | MrExcel Message Board

    Mar 29, 2018 · Copy and paste the JSON.bas code into a standard VBA module (delete the first line "Attribute ..."). Put the following code in another module. It calls the JSON Parse routine on your data and shows how to access the nested Dictionaries and arrays, outputting the values to the Immediate window.

Refresh