Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
10 years ago
Solved

create custom column concatenated

I'm fumbling create a custom column in a table that has already been loaded, this column will be used to relate that table to another, however I am unable to create this custom column.
I need to concatenate all the fields that are in the picture, I do not know what function and how to use, can someone help me?

 

  • Text.From([Column) & Text.From([Column2]) & Text.From([Column3])

10 Replies

  • Vvelarde's avatar
    Vvelarde
    Community Champion

    A Sample:

    =[Segment] & Text.From([Count])

     

     

    If you column is not a string use Text.From([Column]) else just the column name

     

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Vvelarde

       

      in my chance all the columns are of type int, as would be?

      • Vvelarde's avatar
        Vvelarde
        Community Champion
        Text.From([Column) & Text.From([Column2]) & Text.From([Column3])