Forum Discussion
Concatenate Text with Measure not Custom Column
- 6 years ago
Hi,
This DAX formula works
Measure = CONCATENATEX(Data,Data[[L1.3 - Country]]]&" "&Data[[L1.8 - Bev Segment]]],UNICHAR(10))Hope this helps.
- 6 years ago
Or, if you just want a calculated column just do this:
Column =
CONCATENATE(Query1[[L1.3 - Country]]] & " ",Query1[[L1.8 - Bev Segment]]] )
Hi
Ashish_Mathur and Greg_Deckler
I'm using this measure:
I'm achieving this result in a matrix table
Any suggestion?
Thanks
Diego
Hi,
Explain the question and show the expected result.
- Anonymous4 years agoNot applicable
Hello Ashish_Mathur ,
I'm looking for a solution to check the highest performing Supplier, no matter the country they are in.
I have a matrix table where I would like to sort for more than one column
The problem?
In a matrix I can't sort more than one column, so the result that I will see is just
the highest performer in the Country Selected.What i'm thinking?
In a concatenation of Country Code and Supplier Group in order to get it done.This is my current configuration of my matrix table:
Rows: Country Code(EU,PT,ES), Supplier(Zara,Coca-Cola,Amazon) Brand ( ABC,XYZ,EEE)
Columns: Year(2021, Month id(202101,202102)
Values: Measures like Conversion Rate %,Turnover etcDummy table:
I don't have the chance to create a calculated column so my only way to tackle this is by using a measure:
What am i using:
Measure_concate =
CONCATENATEX('Dim Supplier Group','Dim Supplier Group'[Supplier Group]&" - "&'Dim Supplier Group'[COD_COUNTRY],UNICHAR(10))Because i can't add the measure as a row, i added them in the vales, and this is what i am getting now:
Output in the matrix:Output in a table:Any solution for this?
Thank you
- Ashish_Mathur4 years agoSuper User
Hi,
I still cannot understand much. The images are way too small.