+ Reply to Thread
Results 1 to 62 of 62

Excel to JSON Conversion using VBA macro

  1. #1
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Excel to JSON Conversion using VBA macro

    Hi,

    Need to parse a excel sheet containing multiple sheets in it in to a JSON using VBA Macro.
    And during JSON conversion below should be achieved.

    1. The file has multiple sheets.
    2. Create a Macro button in a new sheet and call it as Refresh JSON.
    3. On click of the above button, the following should be achieved
    a. Parse data in all sheets into JSON. The number of sheets and number of columns in each sheet might vary.
    b. Write this into an output file as XYZIndex.json – Single out put file containing data from all sheets ,Save the file in the same location as the excel.
    c. Note that Column A (Name) of every sheet has hyperlinked data. This should get parsed as "Name": "filename", "URL": "file complete address"


    Thanks

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

    Re: Excel to JSON Conversion using VBA macro

    You need to provide the following as a minimum:

    1. A sample input workbook
    2. Example Json output or at the very least a Schema

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

    Re: Excel to JSON Conversion using VBA macro

    Rule 03: Cross-posting Without Telling Us

    Your post does not comply with Rule 3 of our Forum RULES. Do not cross-post your question on multiple forums without telling us about your threads on other forums.

    Post a link to any other forums where you have asked the same question. If you have fewer than 10 posts here, you will not be able to post a link, but you must still tell us where else you have asked the question.

    Cross-posting is when you post the same question in other forums on the web. The last thing you want to do is waste people's time working on an issue you have already resolved elsewhere. We prefer that you not cross-post at all, but if you do (and it's unlikely to go unnoticed), you MUST provide a link (copy the url from the address bar in your browser) to the cross-post.

    Expect cross-posted questions without a link to be closed and a message will be posted by the moderator explaining why. We are here to help so help us to help you!

    Read this to understand why we ask you to do this, and then please edit your first post to include links to any and all cross-posts in any other forums (not just this site).

    If you have less than 10 posts, do not try to copy and paste the link. Instead, type the link out in your thread.

    No further help to be offered, please, until the OP has complied with this request.

  4. #4
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    hi intention is not to waste time only intention to seek help on this problem.

  5. #5
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    and it's posted on mrexcel website.

  6. #6
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    can someone please help now on my query soon?

  7. #7
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    also how to attach sample excel sheet and sample json file here as no attachment tab is available on this forum?

  8. #8
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    any updates please?

  9. #9
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    any forum leaders available to help on this issue please?

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

    Re: Excel to JSON Conversion using VBA macro

    Attach a sample workbook (not a picture or pasted copy). Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.

  11. #11
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    Total 6 sheets in excel work book ( from column headings A to R (total 18 columns in it) and first column of each sheet has hyperlinked data and names of these 6 sheets be sheet 1,sheet 2,....sheet 6. This should get parsed(only first column should get parsed like this as it has hperlinked data in it) as "Name": "filename", "URL": "file complete address". Other columns should get parsed as usually but all these parsing of all of these excel sheets should be at the same place where this original Excel file is stored let's say it's stored in D drive so once 'Refresh JSON' button which is created in sheet 7 is clicked all these parsed sheets should be Written into an output file as XYZIndex.json – Single out put file containing data from all sheets .Save the file in the same location as the excel.

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

    Re: Excel to JSON Conversion using VBA macro

    Again, without an input workbook and the sample Json output, no one can help you

  13. #13
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    and in this JSON output file sequence of parsing should be as per sequence of excel sheets like first sheet 1 then sheet 2 ..and at bottom sheet 6. So parsed excel sheet 1 should 1 at top top and parsed sheet 6 should be at bottom in same JSON file.

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

    Re: Excel to JSON Conversion using VBA macro

    I think I’m wasting my time here ��

  15. #15
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    Please find sample excel and json file for the same.
    Attached Files Attached Files

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

    Re: Excel to JSON Conversion using VBA macro

    Where's the json?

  17. #17
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    json outfile is however .json format but unable to upload it on this forum on this format so uploading a sample output file in text format for the same.
    Attached Files Attached Files

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

    Re: Excel to JSON Conversion using VBA macro

    How's this:
    Please Login or Register  to view this content.
    You'll need to download and put the code from here into a module called "JsonConvert": https://github.com/VBA-tools/VBA-JSO...nConverter.bas

    Copy and paste everything expect the top line into a new module
    Name that module JsonConvert
    Add a reference to the Microsoft Scripting Runtime

    Output from your file attached:
    Attached Files Attached Files

  19. #19
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    Thanks, But when assigning this macro by creating a new button in attached excel sheet and naming it as 'Refresh JSON' Then error is appearing attached is the screen shots for the same.
    Attached Images Attached Images

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

    Re: Excel to JSON Conversion using VBA macro

    It means that your workbook isn't set up like your sample - i.e you don't have a table on every sheet

    You need a table on every sheet as per your example and they must all start in A1

  21. #21
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    no all sheets are same like the example and just one extra sheet added 'Sheet 7' and in it's A1 cell created a click button 'Refresh JSON' and assign it the same macro which is shared by you and when clicking on this button i am getting error as pasted in previous post.

  22. #22
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    and it's type was 'excel Macro enabled workbook'.

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

    Re: Excel to JSON Conversion using VBA macro

    Does the extra sheet, sheet 7 have a table in it?

  24. #24
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    no table in sheet 7 just a 'Refresh JSON Button' in cell A1, and assigned a macro shared by you to it and upon clicking this refresh JSON button I was expecting all previous 6 sheets would get parsed at same location where this excel is but nothing such is happening instead of it error is appearing as pasted in previous post.

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

    Re: Excel to JSON Conversion using VBA macro

    Then it isn't the same as the sample workbook you uploaded.

    Quote Originally Posted by Kyle123 View Post
    You need a table on every sheet as per your example and they must all start in A1
    You requested:
    Quote Originally Posted by itpgm21
    a. Parse data in all sheets into JSON. The number of sheets and number of columns in each sheet might vary.
    That's what the macro does.

    If you remove sheet 7 and run the macro from the dialog box, then it will work correctly

  26. #26
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    i am not sure where is this dialog box for running this macro but as per my very first post :-

    I need a 'Refresh JSON' button to parse data of all these 6 sheets and it was mentioned in very first post itself like below:-

    "
    Need to parse a excel sheet containing multiple sheets in it in to a JSON using VBA Macro.
    And during JSON conversion below should be achieved.

    1. The file has multiple sheets.
    2. Create a Macro button in a new sheet and call it as Refresh JSON.
    3. On click of the above button, the following should be achieved
    a. Parse data in all sheets into JSON. The number of sheets and number of columns in each sheet might vary.
    b. Write this into an output file as XYZIndex.json – Single out put file containing data from all sheets ,Save the file in the same location as the excel.
    c. Note that Column A (Name) of every sheet has hyperlinked data. This should get parsed as "Name": "filename", "URL": "file complete address"

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

    Re: Excel to JSON Conversion using VBA macro

    I don't really know why you need a button, just run the macro.

    However, the simplest solution would be to put the button on one of the existing workheets - don't create a new one for it.

    If you want to change the code to allow for your extra sheet, then maybe:
    Please Login or Register  to view this content.
    To run a macro without a button:

    To run the Excel VBA code:
    1. Press Alt-F8 to open the macro list (or open it from the ribbon)
    2. Select a macro in the list
    3. Click the Run button
    Last edited by Kyle123; 11-26-2018 at 09:44 AM.

  28. #28
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    still error 424 for this macro please refer attached screen shot for the same.(it's coming when creating new sheet 7 and assigning it the macro shared by you as above code.)
    Attached Images Attached Images

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

    Re: Excel to JSON Conversion using VBA macro

    Have you done this bit?
    Quote Originally Posted by Kyle123 View Post
    You'll need to download and put the code from here into a module called "JsonConvert": https://github.com/VBA-tools/VBA-JSO...nConverter.bas

    Copy and paste everything expect the top line into a new module
    Name that module JsonConvert
    Add a reference to the Microsoft Scripting Runtime
    Last edited by Kyle123; 11-26-2018 at 10:09 AM.

  30. #30
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    not sure how to do this could you please explain step by step like when i click on this link i get a lengthy 1124 lines of code,so in this code what i need to do?
    should i use these 1124 lines of code for my 'Refresh JSON' button assigned macro?

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

    Re: Excel to JSON Conversion using VBA macro

    No, I’ve given you step by step instructions.

    I’ll call out to other forum members to see if they can help you

  32. #32
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    yes please it would be much appreciated.

  33. #33
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    as still not sure what to do of these 1124 lines of code shared by you in previous link.

  34. #34
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    can someone please explain it in detail as some confusion is here :-"You'll need to download and put the code from here into a module called "JsonConvert": https://github.com/VBA-tools/VBA-JSO...nConverter.bas

    Copy and paste everything expect the top line into a new module
    Name that module JsonConvert
    Add a reference to the Microsoft Scripting Runtime"

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

    Re: Excel to JSON Conversion using VBA macro

    Which part are you having difficulty with?

  36. #36
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: Excel to JSON Conversion using VBA macro

    1. create a new module
    2. Copy and paste everything all 1124 lines of the code from the website link
    3. delete the first line...ie Attribute VB_Name = "JsonConverter"
    4. Name that module JsonConvert
    5. In the VBA environment. GOTO Tools>references>find and tick "Microsoft Scripting Runtime"


    if you dont understand what point 5 is
    go here and look at the pictures (dont read anything - just look at the pictures)
    https://www.datanumen.com/blogs/add-...reference-vba/
    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  37. #37
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    i did as advised above but after step no.5 what should i do should i add new click button 'Refresh JSON' in sheet 7 and assign it the macro pasted in above link(after removing first line in the link code) and then should i expect all 6 sheets data would be parsed in .json file in same location automatically where this main excel(which has 6 sheets and module(Json Convert) ) in it?

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

    Re: Excel to JSON Conversion using VBA macro

    Nothing after step 5. If you have done that correctly then the original code will work and you will have a textfile with the json in at the location in the code here:

    Please Login or Register  to view this content.
    You don't need to change your button

  39. #39
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    But I needed to create a button 'Refresh JSON' in sheet 7 and upon clicking it parsing in .json file format should have happened for all the 6 shets in this excel also
    after completing all above 5 steps i am not getting any .txt file either whereas original requirement was to have parsed json file in .json format at same location(excel).

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

    Re: Excel to JSON Conversion using VBA macro

    You've already created the button and assigned the macro to it!!!!

    None of that has anything to do with the last 20 posts where you've been struggling to copy and paste.

    Have you looked in C:\temp\ to see if there is a text file there called txt with the json in?


    Attach the workbook, exactly as you have it set up now.

  41. #41
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    How ever one file is there in C:\temp\ seems parsed one but i want it to be generated .json file format and it should only be generated when i am clicking on this 'Refresh JSON' button but even unable to assign macro (minus top line in link) to it,to assign macro to this button 'Refresh JSON' should populate but it's not getting populated,attaching excel for more clarification as it is.
    Attached Files Attached Files

  42. #42
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    also how did it come in C:\temp\ whereas i was nver able to assign macro to 'Refresh JSON' button created in sheet 7 in A1 cell,it's amazing,however it should only have been generated if i had clicked on 'Refresh JSON' button in sheet 7.

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

    Re: Excel to JSON Conversion using VBA macro

    It is in the json file format. Do you mean you want a .json extension on the file?

    Why have you deleted the original code I gave you? You need both lots of code - this is incredibly hard work, are you being purposefully obtuse?

    In a module, put the following:
    Please Login or Register  to view this content.
    Assign this macro to the button in sheet 7, KEEPING THE CODE THAT YOU HAVE PUT IN JsonConvert

    On the assumption that the workbook is saved (it needs to be saved to have a file path), you will have a file called output.json in the same directory

  44. #44
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    also don't you think 1123 lines of code for this task is too much? can it be done in fewer lines of code?

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

    Re: Excel to JSON Conversion using VBA macro

    No, not reliably or easily enough to do it for you without posting this in commercial services and paying for it.

    Why does it matter how much code there is?

    Do I take it from this that this is now working?
    Last edited by Kyle123; 11-27-2018 at 06:22 AM.

  46. #46
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    yes,i want .json extension on the file and above pasted code is to be put above or below on KEEPING THE CODE THAT I HAVE PUT IN JsonConvert

  47. #47
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    if both the codes link plus above pasted codes are required then i need a sequence of these whichone should come first and which one should come after.

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

    Re: Excel to JSON Conversion using VBA macro

    No, you don't. Just use the instructions in post #43

  49. #49
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    no,task is not done yet i need a sequence of pasted code plus link so that when i click on 'refresh json' button in sheet 7 i should get .json extension file at same location but it's not happening yet.

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

    Re: Excel to JSON Conversion using VBA macro

    You don't need a ******* sequence, what sequence are you talking about? Just follow the instructions in post 43

  51. #51
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    actually i had followed thread 36 by humdingaling to understand it in easy way (sequence of steps)

  52. #52
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    after assigning the macro code pasted above i am getting compile time error,please refer attached screen shot for more information.
    Attached Images Attached Images

  53. #53
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    any solution to recover from this error?

  54. #54
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    now after clicking on 'refresh json' button nothing is happening. attached in the excel for your reference.please advise what is wrong happeining here
    now link code plus pasted code both are there inspite of this it is not producing desired result.
    Attached Files Attached Files

  55. #55
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    experts please advise.

  56. #56
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    senior experts could you please advise soon?

  57. #57
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    hi, is anyone available on this forum for this issue please?

  58. #58
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    finally with these 2 set of codes link code and pasted code above it has started generating .json output file but i need a json data in format like which is appearing in c drive temp folder with txt name where top to bottom data is parsed like first pased for sheet 1(External Artifacts) then for sheet 2 and then ..finally for sheet 6.
    it seems in .json output file format it's not getting parsed in vertical way like in txt file(in c drive temp folder) also it seems parsing is not happening for all the sheets,can experts please look in to this on.

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

    Re: Excel to JSON Conversion using VBA macro

    Change
    Please Login or Register  to view this content.
    To
    Please Login or Register  to view this content.
    Though I don't know why it matters, whitespace is immaterial in json

  60. #60
    Registered User
    Join Date
    11-22-2018
    Location
    asia
    MS-Off Ver
    2016
    Posts
    38

    Re: Excel to JSON Conversion using VBA macro

    Great and Thanks a lot for this help.

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

    Re: Excel to JSON Conversion using VBA macro

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  62. #62
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,418

    Re: Excel to JSON Conversion using VBA macro

    Quote Originally Posted by itpgm21 View Post
    hi, is anyone available on this forum for this issue please?
    Be patient!!! Please remember that those who help here do so voluntarily and of their own goodwill. They live in many different time zones and many will be out at work right now if they are not asleep on the other side of the globe. This is not a paid 'service': members will help when they are ready and able to do so, and not 'on demand'. Please do not try to put pressure of time on anyone here: if you get the help you need today, that's fine, but you really should not count on it. Thanks for your understanding and patience.

    Please do NOT bump threads more than once within any 24-hour period. 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.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

+ 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. Macro JSON file object extract
    By yousufj56 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-16-2017, 07:30 PM
  2. Excel VBA-JSON Example
    By manofcheese in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-28-2016, 11:52 AM
  3. Json to Excel Conversion
    By shrikant_chandurkar in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-19-2015, 03:50 AM
  4. API Json to Excel Macro
    By ermengard in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-09-2014, 05:33 AM
  5. Json file from URL to Excel
    By KK33317 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-21-2014, 10:50 AM
  6. Import JSON in Excel by macro
    By bmmerkx in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-28-2013, 09:39 AM

Tags for this Thread

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