Forum Discussion
DAX Function CONCATENATEX is not supported on PBIRS / DirectQuery Mode
- 8 years ago
Hmm, yeah for something simple like that you could do something like:
Measure = MAXX(FILTER('#Currencies',[Currency]="HKD"),[Currency]) & "," & MAXX(FILTER('#Currencies',[Currency]="USD"),[Currency]) & "," & MAXX(FILTER('#Currencies',[Currency]="RMB"),[Currency])But that's really not any better than just creating a measure that is = "HKD,USD,RMB" and I assume this is a small subset of your data.
Hi Greg,
Thanks for your quick response.
What i am trying to do is to concatenate a column's values into a list.
Source data
| Currency |
| HKD |
| USD |
| RMB |
Expected Output
HKD,USD,RMB
Thus CONCATENATEX sounds do exactly what I expect.
Appreciate if you can share any workaround to achieve the same. Thanks so much.
Regards,
Blithe
Hmm, yeah for something simple like that you could do something like:
Measure =
MAXX(FILTER('#Currencies',[Currency]="HKD"),[Currency]) & "," &
MAXX(FILTER('#Currencies',[Currency]="USD"),[Currency]) & "," &
MAXX(FILTER('#Currencies',[Currency]="RMB"),[Currency])But that's really not any better than just creating a measure that is = "HKD,USD,RMB" and I assume this is a small subset of your data.
- blithechan8 years ago
Advocate I
Thanks Greg for suggesting MAXX function. It serves the purpose well.