'Power query nested table

I have xml file that i need to process. My output look like this :

enter image description here

In the nested table there is only one value but i cant figure out how to ungroup them.



Solution 1:[1]

Add a column and insert the following M (replacing channel.item.ht with whatever your column name actually is).

if [channel.item.ht] is table then Record.ToList([channel.item.ht]{0}){0} else [channel.item.ht]

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 David