Forum Discussion

dw700d's avatar
dw700d
Post Patron
4 years ago
Solved

combining two rows into one

I have two columns. Column 1 contains the names of account holders. Column 2 contains account codes, I would like to create a measure that determines if an account holder has multiple account codes  ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi dw700d ,

     

    You could create a calculated column.

    Column = CONCATENATEX(FILTER('Table',[Account Holder]=EARLIER('Table'[Account Holder])),'Table'[Account Code],"+")

     

     

    Best Regards,

    Stephen Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.