Forum Discussion
Anonymous
7 years agoNot applicable
Concatenate Measure not Custom Column
I need to Concatenate Two text strings for a Matrix to simplify the view. We have a Data Cube that does not allow the addition of Tables or Custom Columns. DAX CONCATENATE is for a custom Column. ...
v-lili6-msft
7 years agoCommunity Support
Hi@ Moscuba
You can try to this measure as below:
Measure 3 = CONCATENATE ( SELECTEDVALUE ( 'Table2'[PCATID] )&"_", SELECTEDVALUE ( 'Table2'[PCAT Name] ) )
Result:
Best Regards,
Lin
shaikarshad29
4 years agoFrequent Visitor
Is it possible to include the final concatenated srting in table, without making use of original string columns inside table from where the final stringw as derived?