I am trying to import this simple XML data into Power BI (or Excel 2016):
https://resourcescrono.s3-eu-west-1.amazonaws.com/demo-biblio.xml
It's a simple XML, with a 3 column table (it even has the XSD schema attached). The same XML can be easily imported in former Excel versions (Excel 2003 and so on).
However, Power BI and Excel 2016 fails in multiple ways:
How can get this data into my Power BI dashboard or Excel 2016?

My regional settings are spanish, but I don't know the regional setting of my users (may vary).
UPDATE: Microsoft has accepted it as a bug. Excel should respect XSD schema: https://community.powerbi.com/t5/Issues/Bug-importing-simple-XML-file/idc-p/429822
I can't duplicate what you are seeing when I try to load that XML file.
Here's what I'm doing. (I'm using Power BI.)


datetime, Int64.Type, and number.
Here's the full query code from these steps:
let
Source = Xml.Tables(Web.Contents("https://resourcescrono.s3-eu-west-1.amazonaws.com/demo-biblio.xml")),
Table = Source{0}[Table],
#"Changed Type" = Table.TransformColumnTypes(Table,{{"Fecha", type datetime}, {"Unidades", Int64.Type}, {"Importe", type number}})
in
#"Changed Type"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With