
Creator II
2024-07-02
10:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to concat data
Need to concat data for column 1 as shown in the picture.
I tried this code Concat({<Column = {'Column 1'}>} SUM_ReMark, chr(10))
But the results were reversed. What should I do?
Labels (8)
Labels
336 Views
1 Reply

Partner Ambassador/MVP
2024-07-02
11:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove Concat_Row column from the chart and use
- Concat([Column 1],',') assuming that Column 1 is the name of the filed you are trying to concatenate
- If you wish to list only distinct values then use Concat(Distinct [Column 1],',')
- If your [Column 1] is a measure then the epression would need to take into account dimensionality of the chart (dimensions) and it would be somithing like:
- Concat(Aggr("your measure expression",Dim1,Dim2,Dim3),',')
- your measure expression could be whatever is producing Column 1: for example Sum(Sales)
- Dim1, Dim2, Dim3 etc.. are the dimensions which drive granularity of your required concatenation
- Concat(Aggr("your measure expression",Dim1,Dim2,Dim3),',')
cheers
cheers Lech, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful to the problem.
326 Views
