Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Creating Hierarchies

Hi All,   I am pretty new to Power BI. I have a problem in hand for which I'm trying to find a solution. I have a column in a table with values like Apple wez Apple abc Apple xyz 1 Mango 123 M...
  • parry2k's avatar
    parry2k
    7 years ago

    Anonymous here is sample code, go to query edit, and add blank query, in advanced editor, paste below code. Apply the changes and one table is loaded, put a matrix visual, add fruit type and fruit column on rows and drill down and you will get the result

     

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WciwoyElVSExKVorVgfEqKqsUDMF838S89HwFQyNjJF5aYjGKbHZalgKyfE4OslnlqVVKsbEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Fruit = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"Fruit", type text}}),
        #"Added Custom" = Table.AddColumn(#"Changed Type", "Fruit Type", each Text.BeforeDelimiter([Fruit]," " ))
    in
        #"Added Custom"