Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have telemetery data from KEPServerEX's MQTT client being published to the IoT Hub. This data is then queried in stream analytics to create individual JSON values from each message which can have up to 1000 individual tag values per message. My query in stream analytics is:
<start code>
SELECT
event.timestamp as messageTS,
val.ArrayValue.id,
val.ArrayValue.v,
val.ArrayValue.t as valueTS
INTO blobstorage
FROM
mqtt AS event
CROSS APPLY GetArrayElements(event.[values]) AS val
</end code>
This provides a very nicely individually formatted JSON message like:
{"messageTS":1576108485408,"id":"example_Tag","v":910,"valueTS":1576108481860}
My blob storage is filled with these messages. Although they are properly formatted JSON message by themselves, they are part of a newline deliminted JSON file in my blob container (http://ndjson.org/).
How can I get these records into Power BI such that they were a complete list (i.e. had brackets on each end and were deliminted by commas)?
Solved! Go to Solution.
@her_abs ,
I would suggest you to refer to similar thread below:
https://community.powerbi.com/t5/Power-Query/Change-JSON-Blob-data-during-import/td-p/32121
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@her_abs ,
I would suggest you to refer to similar thread below:
https://community.powerbi.com/t5/Power-Query/Change-JSON-Blob-data-during-import/td-p/32121
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
72 | |
39 | |
28 | |
27 |
User | Count |
---|---|
97 | |
97 | |
58 | |
45 | |
42 |