Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a public API that's freely availabe to use by anyone (no auth required). The Request URL I have is:
https://myhospitalsapi.aihw.gov.au/api/v1/measure-downloads/measure-download-codes
This returns JSON (see JSON Result below for full result).
I'm having trouble Transforming this to a Table of data.
My hope is to have a single table that has 3 columns:- 'datasheet_code', 'datasheet_description', 'datasheet_type'.
I'm not sure how to cater for the result json format that has an extra layer sitting above these fields e.g.
JSON Result
Solved! Go to Solution.
let
Source = Web.Contents("https://myhospitalsapi.aihw.gov.au/api/v1/measure-downloads/measure-download-codes"),
Custom1 = Table.FromRecords(List.Combine(Record.ToList(Json.Document(Source)[result])))
in
Custom1
Life Saver - thanks so much
let
Source = Web.Contents("https://myhospitalsapi.aihw.gov.au/api/v1/measure-downloads/measure-download-codes"),
Custom1 = Table.FromRecords(List.Combine(Record.ToList(Json.Document(Source)[result])))
in
Custom1
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
10 | |
10 | |
8 | |
7 |