Forum Discussion
Concatenate Measure not Custom Column
Hi@ Moscuba
You can try to this measure as below:
Measure 3 = CONCATENATE ( SELECTEDVALUE ( 'Table2'[PCATID] )&"_", SELECTEDVALUE ( 'Table2'[PCAT Name] ) )
Result:
Best Regards,
Lin
- Anonymous6 years agoNot applicable
This is the perfect answer which I was looking for, Thanks lot for the help. Even on the microsoft own portal they mentioned the Dax function but the syntax is incorrect when we tried using text filed name which is not measures
https://docs.microsoft.com/en-us/dax/concatenate-function-dax
=CONCATENATE(Customer[LastName], CONCATENATE(", ", Customer[FirstName]))
- ianjablonski5 years agoNew Member
This is the same measure i was looking for except i would like to extend it by making it a count.
Said differently I would like the measure to return the count of "Measure 3", in your example, to be used in a Card .
Can this be done ?
Thansk You - shaikarshad294 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?