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
mertzdj
New Member

How to prevent empty values from loading as tables instead of nulls when load is an xml file

I'm loading similar query with multiple inputs as Xml.Tables(Web.Contents(...

 

When I drill down, often times empty xml tags come in as "Table" instead of as null values or empty string.  How can I blanket load and do expands that generate as nulls instead of empty tables.  

 

When they return to Excel they show up as text "Table".

2 REPLIES 2
amirshiloh
Advocate I
Advocate I

i have added the following lines at the end of my Power Query:
#"ReplaceEmptyTables"= Table.TransformColumnTypes(#"Sorted Rows",{{"SampleColumn1", type text},{"SampleColumn2", type text},{"SampleColumn3", type text}}),
#"Replaced Errors" = Table.ReplaceErrorValues(ReplaceEmptyTables, {{"SampleColumn1", ""}, {"SampleColumn2", ""},{"SampleColumn3", ""}})

v-stephen-msft
Community Support
Community Support

Hi @mertzdj ,

 

To replace empty XML tags with null values or empty strings, you can use the Xml.Tables function in combination with the Table.ReplaceValue function.

let
    Source = Xml.Tables(Web.Contents("https://example.com")),
    ReplaceEmptyTables = Table.ReplaceValue(Source, {}, null, Replacer.ReplaceValue, {"Column1", "Column2", "Column3"})
in
    ReplaceEmptyTables

In this example, we first load the XML data using the Xml.Tables function. Then, we use the Table.ReplaceValue function to replace any empty tables in the specified columns with null values. The Replacer.ReplaceValue option tells the function to replace the empty tables with the specified value, which in this case is null. You can also replace empty tables with an empty string by replacing null with "".

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.           

 

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.

Top Solution Authors
Top Kudoed Authors