Forum Discussion

viferenc's avatar
viferenc
Helper II
5 years ago
Solved

Need help mulitple line

Dear All,   I would like to ask fo your help.   I have in Table 1 a column with the following text. Column A Car Bus Airplane Boot   In Table 2 I have column with the following text. Colu...
  • ChrisMendoza's avatar
    5 years ago

    Add a Custom Column to Table2 as:

    Table.Column(Table1,"Column A")

    Expand the List to Rows to this:

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlSK1YlWMgKTxmDSBEyaKsXGAgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ColumnA = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"ColumnA", Int64.Type}}),
        #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each Table.Column(Table1,"Column A")),
        #"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom")
    in
        #"Expanded Custom"
  • ChrisMendoza's avatar
    ChrisMendoza
    5 years ago

    viferenc - I would recommend posting your follow-up issue as a new post. It is very likely someone else has a solution or better understanding of what you describe.