Reputation: 746
I have a doubt how to JSON structure maintain in excel sheet. I tried to JSON data convert to excel sheet using an online tool. I got the excel sheet. but JSON object structure not in the excel sheet. can give some suggestion node js code used to convert json data to excel data.
JSON DATA
{
product_name:bourbon,
product_image:
{
image1:image
image2:image
}
}
I tried to convert JSON to Excel using an online tool
There are two columns product_name showing bourbon but product_image showing the only value key is not showing how to fix it.
product_name ------ product_image
bourbon image
image
Upvotes: 0
Views: 916
Reputation: 465
If you want output like this
product_name product_image__image1 product_image__image2
bourbon . image image
Then you can use this.
Upvotes: 1
Reputation: 809
Step 1 – Login to the GST Portal
Step 2 – Go to ‘Services’ > ‘Returns’ > ‘Returns Dashboard’
Step 3 – Select the ‘Financial Year’ and ‘Return Filing Period’ from the drop-down
Step 4 – Click on ‘DOWNLOAD’ button under GSTR 2A.
Step 5 – Click on ‘GENERATE FILE’ and download the JSON file.
Step 6 – Upload the JSON file and convert it to Excel format using a JSON to Excel converter available online.
Upvotes: 0