Forum Discussion
dw700d
4 years agoPost Patron
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 ...
- Anonymous4 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.
speedramps
4 years agoSuper User
Hi dw700d
Try this
Answer =
CONCATENATEX(Yourtable,Yourtable[AccountCode],"+")
Please click the thumbs up and accept as solutions buttons.
If you need add extra complexity to the problem then please accept this solution and raise new tickets.
You will get a response and each solver get the kudos they deserve. Thanks. 😀