Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hello.
I tried to load the table in XML from the following page:
"https://home.treasury.gov/resource-center/data-chart-center/interest-rates/pages/xml?data=daily_trea..." but I couldn't understand how to generate the information structure in power query.
I don't know how to build the information.
Solved! Go to Solution.
let
Source = Xml.Tables(Web.Contents("https://home.treasury.gov/resource-center/data-chart-center/interest-rates/pages/xml?data=daily_trea...")),
Custom1 = Table.Combine(List.Transform(Source{0}[entry][content],each Table.TransformColumns(Table.FirstValue(Table.FirstValue(_)[properties]{0}),{},Table.FirstValue)))
in
Custom1
let
Source = Xml.Tables(Web.Contents("https://home.treasury.gov/resource-center/data-chart-center/interest-rates/pages/xml?data=daily_trea...")),
Custom1 = Table.Combine(List.Transform(Source{0}[entry][content],each Table.TransformColumns(Table.FirstValue(Table.FirstValue(_)[properties]{0}),{},Table.FirstValue)))
in
Custom1
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.