Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Laro88
New Member

Is it possible to extract filterable properties from a text field containing a json object?

I have some metadata describing some servers that I need to do some live statistics of. The meta is just a JSON object with properties like "server-uuid":"jklsdfjklsdjfdkl","server-nickname":"NGINX-FW_2" etc.

I would like to do some filtering etc. based upon properties in the json object without having to create a table that matches the the properties.
Is Power-BI able to a analyse a column with JSON objects for properties and match against the values or do I have to do a manual splitting into a support table with FK-PK relations to get the properties exposed.

 

Br.
Jes R

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @Laro88,

 

I believe it should be possible. Could you post some sample/mock data and the expected result against it, so that we can better assist on this issue? Smiley Happy

 

Regards

There seems to be no proper support for JSON in Power BI - at least not in any well documented way.

 

The solution was to use SQL servers JSON support and put this into a view accessible from power bi

, JSON_VALUE(json, '$.cloudinfo_uuid') AS cloduinfo_uuid, JSON_VALUE(json, '$.cloudinfo_name') AS cloduinfo_name

 

A view is also nice for pre mangling the data like merger of two columns into one as done here (extra data but no PowerBI handling and mangling).

SELECT Id, identifierid, ts, statusgroup, ident, keyname, value, statusgroup + '-' + ident AS sgandident
FROM     dbo.[statistics]

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.