Forum Discussion
toafk
5 years agoFrequent Visitor
XML data containing Tables and values
I'm using XML data as input to Power Bi. This column "PiccoloConfig.Sites.Site.ServiceUnits.ServiceUnit.Resources.Resource.CustomPro.2" contains "Table" and Values. Theese are the val...
- 5 years ago
Hi toafk ,
I see in your other thread opened here you already have the answer to your question (ImkeF's solution):
Table.TransformColumns(YourPreviousStep, {{“YourColumn”, each if Value.Is(_, type table) then _ else #table({“YourColumn”}, {{_}} ) }} )I believe the confusion comes from applying this step to your Source and not your previous step (#"Renamed Columns").
Please confirm.
Payeras_BI
Solution Sage
5 years agoHi toafk ,
I see in your other thread opened here you already have the answer to your question (ImkeF's solution):
Table.TransformColumns(YourPreviousStep, {{“YourColumn”, each if Value.Is(_, type table) then _ else #table({“YourColumn”}, {{_}} ) }} )
I believe the confusion comes from applying this step to your Source and not your previous step (#"Renamed Columns").
Please confirm.