Naila EL KHIL Posted March 30, 2021 Share Posted March 30, 2021 Hello I want to concatenate my rowvalues as following: My table: ID Description 1 Line 1 1 Line 2 1 Line 3 2 Line 4 2 Line 5 3 Line 6 The expected result: ID Description 1 Line 1 Line2 Line 3 2 Line 4 Line 5 3 Line 6 I created a calculated column with the expression:UniqueConcatenate([Description]). My result Calculated column is empty. Do you have any idea about the reason Thanks Link to comment Share on other sites More sharing options...
Paul Shumaker Posted April 2, 2021 Share Posted April 2, 2021 TryUniqueConcatenate([Description]) over [iD] If it still returns empty, check forany empty descriptions Link to comment Share on other sites More sharing options...
Naila EL KHIL Posted April 5, 2021 Author Share Posted April 5, 2021 That worked. Thank you Link to comment Share on other sites More sharing options...
Naila EL KHIL Posted May 24, 2021 Author Share Posted May 24, 2021 Hello . UniqueConcatenate([Description]) over [iD] is working but I can't sort the concatenated description alphabeticaly. (For ID 1 , I get something like 2 - 3 - 1 ) Do you have any idea how I can sort it in order to have 3-2 -1 Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now