Okay, thanks very much for the clear explanation of the requirement with example. Here’s the outcome, with your desired format on the left and my solution on the right:
Here’s what I did:
-
Split the SharePoint list by lowercase to uppercase
-
Unpivoted the resulting names column
-
Added an index column (to maintain the name order in the following measure)
-
Use the CONCATENATEX, UNICHAR(10) trick discussed above in the following measure, to concatenate all the names on a given project with a hard return between them, ordered by the ascending index order:
CONCATX Name =
CONCATENATEX( 'Sharepoint Transformed', 'Sharepoint Transformed'[Name], UNICHAR(10), 'Sharepoint Transformed'[Index], ASC )
Then just dropped project and the measure into the table visual. Hopefully, the third times a charm on this one…
Full solution file posted below.
- Brian
eDNA Forum - Process Name List Solution2.pbix (69.3 KB)