create account

How to Parse Custom JSON Data using Excel by theexcelclub

View this thread on: hive.blogpeakd.comecency.com
· @theexcelclub · (edited)
$1.76
How to Parse Custom JSON Data using Excel
<center>http://theexcelclub.com/wp-content/uploads/2019/01/11.png</center> <br/>To Parse Custom JSON data is to split out its name/value pairs into a more readable useable format.

Excel is a powerful tool that allows you to connect to JSON data and read it.&nbsp; However sometimes this data might require a little manipulation to be fully understood and analysed in Excel.&nbsp;

In this article you will learn
<ul>
 <li>What is JSON Data</li>
 <li>To Connect to JSON data from Excel</li>
 <li>How to Parse simple JSON Data using Excels Power Query</li>
 <li>To Parse complex JSON Data using Excels Power Query</li>
</ul>
This article contains data tables to download so you can practice along and master the art of parsing custom JSON data using Excel.&nbsp; We are also powered with STEEM so you can earn while you learn <img draggable="false" src="https://s.w.org/images/core/emoji/12.0.0-1/svg/1f60a.svg" alt="😊"><br/>.&nbsp; If you are not familiar with <a href="https://theexcelclub.com/excel-power-tools-the-future-of-excel/">Excel Power Tools you can find out about them here</a>.
<h2>What is JSON Data?</h2>
JSON data is a way of representing objects or arrays.&nbsp; It is easy to read, and it is easy to parse, even with Excel.&nbsp; Many API calls will return JSON format and many web apps use JSON which easily moves information around the internet.

The syntax for JSON comes from JavaScript and can be summarized as follows:
<ul>
 <li>Data is shown in name/value pairs separated by : For example “name” : ”paulag”</li>
 <li>Data is separated by commas. For Example “name” : ”paulag” , “Sex” : “Female”</li>
 <li>Curly brackets represent an object. An object being a name/value pair separated by a comma. For Example {“name” : ”paulag” , “Sex” : “Female”}</li>
 <li>Square brackets hold arrays and contains a list of values separated by a comma.</li>
</ul>
Look at the sample JSON in the image below

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/5-2.png" alt="How to Parse Custom JSON Data using Excel" width="1354" height="443"><br/>

{“total_population”: This shows the first object, which is a name/value pair.&nbsp; The name of the object is total_population

[{“date”: “2019-01-02”, “population”: 7638335801}, {“date”: “2019-01-03”, “population”: 7638557789}]}&nbsp; This is the value for the total population. The [ represents an array.&nbsp; This array contains two objects. The objects are defined within the curly brackets and separated with a comma. Each object contains 2 lots of data (name/value pair) also separated with a comma.&nbsp; The data, shown in the name/value pairs, in this example is date and population.

Here is one you can look at yourself. <a href="https://api.coinmarketcap.com/v1/ticker/bitcoin/">https://api.coinmarketcap.com/v1/ticker/bitcoin/</a>

If you enter this to your browser, you will get something like the below:

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-1.png" alt="excel JSON" width="439" height="373"><br/>

Let’s take a look at that image in more detail.

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-2.png" alt="" width="792" height="462"><br/>
<h2>Connecting to JSON data from Excel</h2>
In Excels Data ribbon, under GET and Transform Data, we have the option of connecting to data of multiple sources and multiple types.&nbsp;

If we select Get data from file, we will then have the option to get data from a JSON file.&nbsp;

In this example we have URL API endpoint <a href="https://api.coinmarketcap.com/v1/ticker/bitcoin/">https://api.coinmarketcap.com/v1/ticker/bitcoin/</a>. &nbsp;Therefore, from the Data Ribbon we can select, Get data from Web.&nbsp; This will open a dialogue box in which you place the URL.

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-3.png" alt="" width="735" height="378"><br/>

Next, Power query will then open.&nbsp; Power query is a magic excel tool that will allow you transform data that you connect to into a usable format.

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/9.png" alt="" width="744" height="298"><br/>

The JSON data will appear as a list of records Power Query. For excel to read this, we must convert a list to a table. Select ‘to table’ from the available option.

Next, Power query will create a table and you will see this step appear on the right of the power query window under applied steps.&nbsp;

This new table contains a record. We must expand this record to get the value pairs. As this record only has 1 row, we would expect this to expand across the columns. &nbsp;To do this, right click on the arrows in the column header.

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-5.png" alt="" width="733" height="517"><br/>

This will reveal the names of the value pairs.&nbsp; By selecting ok a new column will be set up in the table.&nbsp; The name will be in the header and the value in the row. &nbsp;

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-6.png" alt="" width="1534" height="131"><br/>
<h3>Further transformations</h3>
If we wanted this data going down the row, we could Unpivot the columns.&nbsp; By selecting the id column.&nbsp; Then from the Transform ribbon select the dropdown for unpivot columns and select unpivot other columns.&nbsp;

<img src="http://theexcelclub.com/wp-content/uploads/2019/11/Excel-JSON-7.png" alt="" width="723" height="441"><br/>

When working with Power Query, it’s important to make sure you have the correct data types set.&nbsp; To work with this data, we must now move to from Power Query to Excel.&nbsp; If we select File, and then select Close and load, this will load the data as a table in Excel.&nbsp; Or, if we select or Close and Load to, the data will be loaded into a Power Pivot Model. &nbsp;
<h2>How to Parse JSON Data in Excel</h2>
Very often when you access JSON data with Excel it appears in 1 column.&nbsp; This can happen for many reasons and is often the design of a database.

Look at the image below.&nbsp; We can see the json_metadata field is still in its JSON syntax

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/6-2-1024x54.png" alt="How to Parse Custom JSON Data using Excel" width="1024" height="54"><br/>

When we encounter data like this, we can easily parse the column into its components.&nbsp; From the image below we see we have 4 components. We have An Array, an Object, the data, and one of the data fields contains an array.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/7-2.png" alt="How to Parse Custom JSON Data using Excel" width="913" height="515"><br/>
<h3>STEP by STEP</h3>
<a href="https://www.dropbox.com/s/itpne6vizrtb8yk/JSON%20example.csv?dl=0">Download this file</a>.&nbsp; It contains a table as shown below.&nbsp; (do not copy and paste the table as the JSON field will not be recognised.)&nbsp;
<table>
<tbody>
<tr>
<td width="64"><strong>tx_id</strong></td>
<td width="48"><strong>tid</strong></td>
<td width="418"><strong>json_metadata</strong></td>
<td width="71"><strong>timestamp</strong></td>
</tr>
<tr>
<td width="64">647524676</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"mervin-gil","following":"jarvie","what":["blog"]}]</td>
<td width="71">43466.89097</td>
</tr>
<tr>
<td width="64">647524682</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"steliosfan","following":"michealb","what":["blog"]}]</td>
<td width="71">43466.89097</td>
</tr>
<tr>
<td width="64">647524833</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"eugenezh","following":"zentricbau","what":["blog"]}]</td>
<td width="71">43466.89097</td>
</tr>
<tr>
<td width="64">647524855</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"bitcoinportugal","following":"manuellevi","what":[]}]</td>
<td width="71">43466.89097</td>
</tr>
<tr>
<td width="64">647525074</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"eugenezh","following":"adriellute","what":["blog"]}]</td>
<td width="71">43466.89167</td>
</tr>
<tr>
<td width="64">647525089</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"bigbigtoe","following":"hoxly","what":["blog"]}]</td>
<td width="71">43466.89167</td>
</tr>
<tr>
<td width="64">647525121</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"mervin-gil","following":"loveon","what":["blog"]}]</td>
<td width="71">43466.89167</td>
</tr>
<tr>
<td width="64">647525159</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"mervin-gil","following":"pechichemena","what":["blog"]}]</td>
<td width="71">43466.89167</td>
</tr>
<tr>
<td width="64">647525233</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"imealien","following":"pataty69","what":["blog"]}]</td>
<td width="71">43466.89167</td>
</tr>
<tr>
<td width="64">647525652</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"mervin-gil","following":"kamile","what":["blog"]}]</td>
<td width="71">43466.89236</td>
</tr>
<tr>
<td width="64">647525818</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"bitcoinportugal","following":"drmake","what":["blog"]}]</td>
<td width="71">43466.89236</td>
</tr>
<tr>
<td width="64">647525886</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"mervin-gil","following":"bradfordtennyson","what":["blog"]}]</td>
<td width="71">43466.89236</td>
</tr>
<tr>
<td width="64">647525980</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"a0i","following":"shoemanchu","what":["blog"]}]</td>
<td width="71">43466.89236</td>
</tr>
<tr>
<td width="64">647526007</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"voteme","following":"kostyantin","what":["blog"]}]</td>
<td width="71">43466.89236</td>
</tr>
<tr>
<td width="64">648215552</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"ansie","following":"hoxly","what":["blog"]}]</td>
<td width="71">43467.75833</td>
</tr>
<tr>
<td width="64">648215582</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"ashokcan143","following":"abcor","what":[]}]</td>
<td width="71">43467.75833</td>
</tr>
<tr>
<td width="64">648215691</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"ashokcan143","following":"abasinkanga","what":[]}]</td>
<td width="71">43467.75903</td>
</tr>
<tr>
<td width="64">648215820</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"nongvo.piy","following":"acidyo","what":[]}]</td>
<td width="71">43467.75903</td>
</tr>
<tr>
<td width="64">648215859</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"grid9games","following":"yeninsfer","what":["blog"]}]</td>
<td width="71">43467.75903</td>
</tr>
<tr>
<td width="64">648215945</td>
<td width="48">follow</td>
<td width="418">["follow",{"follower":"nongvo.piy","following":"acidyo","what":["blog"]}]</td>
<td width="71">43467.75903</td>
</tr>
</tbody>
</table>
Click on any of the cells that contain the data and from the Data Ribbon select FROM Table/Range

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/8-2.png" alt="How to Parse Custom JSON Data using Excel" width="627" height="144"><br/>

If your data is not in table format, Excel will then prompt you to create a table.&nbsp; Select the cells the contain the data and tick the box to say that your table has headers.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/9-1.png" alt="How to Parse Custom JSON Data using Excel" width="244" height="158"><br/>

Power Query editor window will open. On the canvas you can see your data and, on the right, you can see any transformation steps that have taken place.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/10-1-1024x505.png" alt="How to Parse Custom JSON Data using Excel" width="1024" height="505"><br/>

To parse the json column, first select the column, then on the Transform Ribbon select Parse and select JSON

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/11.png" alt="How to Parse Custom JSON Data using Excel" width="797" height="348"><br/>

Power query will recognise the first [ and create a list format.&nbsp; Next, we need to expand this list to new rows.&nbsp; To do this click on the arrows on the top of the column and select Expand to New Rows.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/12.png" alt="How to Parse Custom JSON Data using Excel" width="766" height="132"><br/>

What is returned is two lines for each tx-id.&nbsp; The json column now has a row for the name of the array, which is follow, and a record.&nbsp; The record will contain the data.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/13.png" alt="How to Parse Custom JSON Data using Excel" width="758" height="216"><br/>

As we do not need the name of the array, we can use the filter to remove all the follow rows

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/14.png" alt="How to Parse Custom JSON Data using Excel" width="799" height="404"><br/>

We are now left with the records. We can expand this record, by pressing the arrow on the column.&nbsp; From here we see we have the names of 3 data fields, Follower, Following and What

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/15.png" alt="How to Parse Custom JSON Data using Excel" width="789" height="301"><br/>

When we select OK, we get a new column in our data table for each data field.

However, the field named what contains an array, which is again shown as a list (or array) which needs to be expanded

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/16.png" alt="How to Parse Custom JSON Data using Excel" width="755" height="223"><br/>

Once we expand this, we are at the end of the JSON data and have extracted the relevant columns.&nbsp; You can now use this data for further analysis in Excel or Power Pivot.&nbsp; To load it back to excel, select File and Close &amp; Load.

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/17.png" alt="How to Parse Custom JSON Data using Excel" width="629" height="305"><br/>
<h2>More complex JSON data extractions in Excel</h2>
So far, we have looked at getting JSON data into Power Query using an Excel table and directly from a URL.&nbsp; There are other ways you can connect to JSON data including connecting directly to a JSON file.&nbsp; Connecting is the easy part.&nbsp; Things get more complicated when you have JSON columns where the strings are different in each row.&nbsp; One might start with an array and so return a list, but some might start with an object and return a record.&nbsp;&nbsp;

In Power Query lists are expanded to new rows in the table and records are expanded to new columns. Parsing custom JSON data in Excel can require some thinking.
<h2>Learn and Earn Activity</h2>
<strong>Look at this small table of data.&nbsp; You can <a style="color: #000000;" href="https://www.dropbox.com/s/2rh9ii0ucnnatyh/json_complex.csv?dl=0">download the file with this link</a> to carry out this Learn and Earn Activity.&nbsp; This is more complex custom JSON data that can be parsed in Excel with Power query.</strong>

<img src="http://theexcelclub.com/wp-content/uploads/2019/01/json.png" alt="" width="961" height="745"><br/>

<strong>The JSON column has varied lengths and objects and strings.&nbsp;</strong> <strong>How would you go about parsing this custom JSON data so that it is all available in one table?</strong>
<h5><center><em><strong>Give it a try.&nbsp; If you have a STEEM account you can earn while you learn. See below for more details.</strong></em></center></h5>
It does require logical thinking and little more Power Query knowledge than what we have covered here but I know you can get it.&nbsp; Also, there is more than one way to come up with the solution.

Post your solutions in the comments section below.&nbsp; If you get stuck, post a comment letting me know where you are stuck and what problems you encounter.

The video below shows how you can parse simple JSON data using Excel Power Query and how you can parse custom JSON data as detailed in the activity.
<h3>Become a Power Pivot Hero</h3>
<a href="https://courses.theexcelclub.com/courses/power-query-excel-365-get-and-transform-data" data-elementor-open-lightbox="">
<img width="441" height="513" src="http://theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png" alt="Power Pivot online training course" srcset="https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?w=441 441w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=258%2C300 258w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=410%2C477 410w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=100%2C116 100w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=275%2C320 275w" sizes="(max-width: 441px) 100vw, 441px"><br/></a>
<h3> WE REWARD YOU for Learning EXCEL</h3>
<p><center>Practical Beginner Excel Now Includes Learn and Earn Activities.</center></p>
<a href="https://courses.theexcelclub.com/courses/practical-beginner-excel-365" data-elementor-open-lightbox="" target="_blank" rel="noopener noreferrer">
<img width="432" height="501" src="http://theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png" alt="FREE beginner excel training" srcset="https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png?w=432 432w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png?resize=259%2C300 259w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png?resize=410%2C475 410w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png?resize=100%2C116 100w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/beginner-excel.png?resize=275%2C319 275w" sizes="(max-width: 432px) 100vw, 432px"><br/></a>
<h3><center><em><strong>Time to Brush Up on Power Pivot&nbsp;</strong></em></center></h3>
<a href="https://courses.theexcelclub.com/courses/power-pivot-excel-365-from-zero-to-hero" data-elementor-open-lightbox="">
<img width="441" height="513" src="http://theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png" alt="Power Pivot online training course" srcset="https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?w=441 441w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=258%2C300 258w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=410%2C477 410w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=100%2C116 100w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/01/power-pivot.png?resize=275%2C320 275w" sizes="(max-width: 441px) 100vw, 441px"><br/></a>
<figure><img src="https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/05/steem.png?w=1170" sizes="(max-width: 225px) 100vw, 225px" srcset="https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/05/steem.png?w=225&amp;ssl=1 225w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/05/steem.png?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/05/steem.png?resize=100%2C100&amp;ssl=1 100w" alt="learn and earn steem activity"><br/></figure>
<center><strong>Now there is value in Learning with The Excel Club and our Learn and Earn STEEM activities.</strong></center></p>
<center><strong>We are the first Excel, PowerBI and DAX blog in the world where you can Earn while you Learn.</strong></center></p>

<center><a href="https://theexcelclub.com/learn-and-earn-steem-activities/">Click to</a> <a href="https://theexcelclub.com/learn-and-earn-steem-activities/">find out more now and start earning while you are learning Excel and Power BI</a></center></h3>
<a href="https://actifit.io/signup?referrer=paulag" data-elementor-open-lightbox="">
<img width="1024" height="497" src="http://theexcelclub.com/wp-content/uploads/2019/01/4-3-1024x497.png" alt="actifit" srcset="https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=1024%2C497 1024w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=300%2C146 300w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=768%2C373 768w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=700%2C340 700w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=410%2C199 410w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=100%2C49 100w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?resize=275%2C133 275w, https://i0.wp.com/theexcelclub.com/wp-content/uploads/2019/01/4-3.png?w=1377 1377w" sizes="(max-width: 1024px) 100vw, 1024px"><br/></a>
<h4><center><strong>BEST VALUE</strong></center></h4>
<center><strong>ACCESS ALL AREAS - UNLIMITED LEARNING</strong></center></h4>
<a href="https://courses.theexcelclub.com/courses/access-all-areas" data-elementor-open-lightbox="">
<img width="438" height="502" src="http://theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png" alt="" srcset="https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png?w=438 438w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png?resize=262%2C300 262w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png?resize=410%2C470 410w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png?resize=100%2C115 100w, https://i1.wp.com/theexcelclub.com/wp-content/uploads/2019/09/access-all-areas.png?resize=275%2C315 275w" sizes="(max-width: 438px) 100vw, 438px"><br/></a>
<center><strong>Sign up for my newsletter – Don’t worry, I won’t spam. Just useful Excel and Power BI tips and tricks to your inbox</strong>&nbsp;<strong>with Earn and Learn activities.</strong></center></h3>
<a href="https://theexcelclub.newzenler.com/f/email-signup" role="button">
SIGN UP NOW
</a>
https://youtu.be/q6sKs2KLnOo
<em>New to Excel? Check out our&nbsp;</em><a href="https://theexcelclub.com/excel-101-getting-started-with-excel-365/"><em>Ultimate beginner Excel Guide here</em></a><em>.</em></h4>
<h4><em>New to Excel Power Tools?&nbsp;</em><a href="https://theexcelclub.com/excel-power-tools-the-future-of-excel/"><em>Check out these amazing Power Pivot, Power Query and Power view demonstrations</em></a></h4>
<h4><em>New to DAX for Power Pivot and Power BI?&nbsp;</em><a href="https://theexcelclub.com/dax-sum-and-sumx-functions/"><em>Let us help you get started</em></a></h4>
<center><strong>Sign up for my newsletter – Don’t worry, I won’t spam. Just useful Excel and Power BI tips and tricks to your inbox</strong>&nbsp;<strong>with Earn and Learn activities.</strong></center></h3>
<a href="https://theexcelclub.newzenler.com/f/email-signup"><strong>SIGN UP NOW</strong></a>

IF YOU CARE- YOU WILL SHARE - YOU WILL FIND THE SHARE BUTTONS BELOW THE COMMENTS SECTION <br /><center><hr/><em>Cross posted from my blog with <a href='https://wordpress.org/plugins/steempress/'>SteemPress</a> : http://theexcelclub.com/how-to-parse-custom-json-data-using-excel/ </em><hr/></center>          
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 76 others
properties (23)
authortheexcelclub
permlinkhowtoparsecustomjsondatausingexcel-v1vln9yn2z
categoryexcel
json_metadata{"community":"steempress","app":"steempress","image":["http://theexcelclub.com/wp-content/uploads/2019/01/11.png"],"tags":["excel","stem","palnet","steemleo","tutorials"],"canonical_url":"http://theexcelclub.com/how-to-parse-custom-json-data-using-excel/"}
created2019-01-29 10:48:27
last_update2019-11-22 23:41:54
depth0
children13
last_payout2019-02-05 10:48:27
cashout_time1969-12-31 23:59:59
total_payout_value1.297 HBD
curator_payout_value0.460 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23,458
author_reputation49,417,421,433,400
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries
0.
accountsteempress
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,101,580
net_rshares4,096,386,387,439
author_curate_reward""
vote details (140)
@abh12345 ·
$0.09
This method certainly beats using SQL for simplicity!

Nice promotion of @actifit from your Wordpress blog too :)
👍  , ,
properties (23)
authorabh12345
permlinkre-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t144120971z
categoryexcel
json_metadata{"tags":["excel"],"users":["actifit"],"app":"steemit/0.1"}
created2019-01-29 14:41:21
last_update2019-01-29 14:41:21
depth1
children1
last_payout2019-02-05 14:41:21
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation1,406,703,258,924,914
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id79,111,160
net_rshares184,646,423,731
author_curate_reward""
vote details (3)
@paulag ·
$0.11
glad you find it usefull @abh12345.  I put @actifit in so people can see there are other ways to also earn steem, get people familiar with some of the uses before I do the hard launch.
👍  ,
properties (23)
authorpaulag
permlinkre-abh12345-re-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t175910838z
categoryexcel
json_metadata{"tags":["excel"],"users":["abh12345","actifit"],"app":"steemit/0.1"}
created2019-01-29 17:59:12
last_update2019-01-29 17:59:12
depth2
children0
last_payout2019-02-05 17:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation274,264,287,951,003
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,120,717
net_rshares235,398,060,589
author_curate_reward""
vote details (2)
@coop78 ·
$0.29
rlm5xmrqur
Hi Paula,
I was following the example and hit a snag.  When I try to parse, I receive an error message.  I tried to research this on the internet to no avail.  My screen looks exactly like the one above, but when I parse, every row in the json_metadata column says Error.  What might I be doing wrong?
👍  , , ,
properties (23)
authorcoop78
permlinkp2ouurcp56p40md
categoryexcel
json_metadata{"app":"steempress/2.0"}
created2019-08-11 01:27:24
last_update2019-08-11 01:27:24
depth1
children2
last_payout2019-08-18 01:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.218 HBD
curator_payout_value0.072 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation81,667,515,497
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries
0.
accountsteempress
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,387,282
net_rshares860,267,429,702
author_curate_reward""
vote details (4)
@dernan ·
01muq6euqq
I have just come back to try this now and I am also getting the same error
properties (22)
authordernan
permlinkep83vw6q0tiezej
categoryexcel
json_metadata{"app":"steempress/2.0"}
created2019-08-18 11:45:39
last_update2019-08-18 11:45:39
depth2
children0
last_payout2019-08-25 11:45:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation344,929,367,652
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries
0.
accountsteempress
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,662,624
net_rshares0
@theexcelclub ·
Hi @coop78 and @dernan I have updated the post to contain download links to files for the activities.  When you copy and paste the tables into excel, the json field is not recognized as a json field.  So please work of the downloads.
properties (22)
authortheexcelclub
permlinkpxzg0g
categoryexcel
json_metadata{"tags":["excel"],"users":["coop78","dernan"],"app":"steemit/0.1"}
created2019-09-17 15:50:39
last_update2019-09-17 15:50:39
depth2
children0
last_payout2019-09-24 15:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation49,417,421,433,400
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,668,306
net_rshares0
@dernan ·
$0.19
This is quite advanced stuff paula, I got your email thanks.  Its a little advanced for me, but I have shared this post with my boss as I think he would be rather intersted
👍  , , , , ,
properties (23)
authordernan
permlinkre-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190130t131231841z
categoryexcel
json_metadata{"tags":["excel"],"app":"steemit/0.1"}
created2019-01-30 13:12:33
last_update2019-01-30 13:12:33
depth1
children1
last_payout2019-02-06 13:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.147 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation344,929,367,652
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,162,213
net_rshares401,810,314,562
author_curate_reward""
vote details (6)
@paulag ·
$0.12
thanks for the share @dernan, and yep it is advanced, but you should try it, its not that difficult.  And next week I will have the video solution to the activity
👍  ,
properties (23)
authorpaulag
permlinkre-dernan-re-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190130t170156207z
categoryexcel
json_metadata{"tags":["excel"],"users":["dernan"],"app":"steemit/0.1"}
created2019-01-30 17:01:57
last_update2019-01-30 17:01:57
depth2
children0
last_payout2019-02-06 17:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.091 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation274,264,287,951,003
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,172,206
net_rshares249,053,850,003
author_curate_reward""
vote details (2)
@maitre ·
$0.04
This is simply awsome: I'll try it, thank you!

Resteemed and (sorry, very little) upvoted!
👍  ,
properties (23)
authormaitre
permlinkre-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t160725188z
categoryexcel
json_metadata{"tags":["excel"],"community":"steempeak","app":"steempeak/1.7.0"}
created2019-01-29 16:07:48
last_update2019-01-29 16:07:48
depth1
children1
last_payout2019-02-05 16:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation91,502,264,313
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,115,748
net_rshares91,552,170,270
author_curate_reward""
vote details (2)
@paulag ·
$0.06
There is so much people can do with Excel, now with the power tool, working with data of different types is so much easier that it was before.
👍  ,
properties (23)
authorpaulag
permlinkre-maitre-re-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t180051004z
categoryexcel
json_metadata{"tags":["excel"],"app":"steemit/0.1"}
created2019-01-29 18:00:51
last_update2019-01-29 18:00:51
depth2
children0
last_payout2019-02-05 18:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation274,264,287,951,003
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,120,784
net_rshares123,456,828,866
author_curate_reward""
vote details (2)
@meno ·
$0.09
Not that anyone should quote me on this one, but it seems that jsons are pretty much standard when it comes to API development.
👍  , , ,
properties (23)
authormeno
permlinkre-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t115510626z
categoryexcel
json_metadata{"tags":["excel"],"app":"steemit/0.1"}
created2019-01-29 11:55:15
last_update2019-01-29 11:55:15
depth1
children1
last_payout2019-02-05 11:55:15
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation519,111,358,363,289
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,103,815
net_rshares189,294,825,863
author_curate_reward""
vote details (4)
@paulag ·
$0.09
Standard way data ca be moved around the web via API calls but all different in the data they contain

Posted using [Partiko Android](https://steemit.com/@partiko-android)
👍  ,
properties (23)
authorpaulag
permlinkpaulag-re-meno-re-theexcelclub-howtoparsecustomjsondatausingexcel-v1vln9yn2z-20190129t140358059z
categoryexcel
json_metadata{"app":"partiko","client":"android"}
created2019-01-29 14:03:57
last_update2019-01-29 14:03:57
depth2
children0
last_payout2019-02-05 14:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation274,264,287,951,003
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,109,357
net_rshares184,399,777,395
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @theexcelclub! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@theexcelclub/votes.png?201902011535</td><td>You made more than 600 upvotes. Your next target is to reach 700 upvotes.</td></tr>
</table>

<sub>_[Click here to view your Board](https://steemitboard.com/@theexcelclub)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-theexcelclub-20190201t162633000z
categoryexcel
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-02-01 16:26:33
last_update2019-02-01 16:26:33
depth1
children0
last_payout2019-02-08 16:26:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length757
author_reputation38,975,615,169,260
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,263,088
net_rshares0
@steempress-io ·
$0.24
tjghx7p08c
Can someone share the download file for this project?  importings JSON INTO Excel.  The link doesn't work for the project.<br/> - michael hughes<br/>
 > This comment was made by a guest account using @steempress. Rewards will be sent to the user once they have a Steem account
👍  ,
properties (23)
authorsteempress-io
permlink4vudjp81qn8vf3h
categoryexcel
json_metadata"{"app":"steempress/2.0","author":"michael hughes","text_length":122,"author_id":299}"
created2020-01-22 03:51:51
last_update2020-01-22 03:51:51
depth1
children0
last_payout2020-01-29 03:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.119 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation9,282,881,060,592
root_title"How to Parse Custom JSON Data using Excel"
beneficiaries
0.
accountsteempress
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id94,628,396
net_rshares1,347,254,258,563
author_curate_reward""
vote details (2)