Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List inside json document for excel document #24

Open
bandika-dgit opened this issue Feb 23, 2016 · 0 comments
Open

List inside json document for excel document #24

bandika-dgit opened this issue Feb 23, 2016 · 0 comments

Comments

@bandika-dgit
Copy link

in case json document has property list inside, for example

{
 "order_id": "123",  
 "type": {
          "subType1":"sub type one",
          "subType2":"sub type two"
          },

 "listProperty": [
       {
           "organization" : {
                      "id" : "organization 1"
             }
      },
     {
           "organization" : {
                     "id": "organization 2"
             }
      },

 ]
}

can possible the each list property element get output to excel like following:

listProperty[0].organization.id listProperty[1].organization.id
organization1 organization2

Instead of:

listProperty
[{"organization" : { "id" : "organization1"}}, {"organization" : { "id" : "organization2"}}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant