I am storing arbitrary objects (the "data" column) in a RMDB database using a format similar to the following:
<id> <object id> <object category> <creation date> <created by> <data>
all of the columns are integers or strings - but the data column is a dump of a json record
so an example row in the database would look something like:
<id> <object id> <object category> <creation date> <created by> <data>
1 abcdef123 myclassCategory 1-1-2000 me {"key1" : "value1" , "key2" : "value2" ... }
Now I am trying to create some reports using excel - I would like to create some buckets according to "object category" and according to buckets created from the "data" json key-values
I would like to use power view (or powerpivot) to parse the data column according to the json values - into new records - and then create reports, charts, histograms etc.
How is this done (parsing the data column)?
Thanks!