Forum Discussion
Arul
Super User
6 years agoNumber Concatenation as a Measure
Hi Community, Could anyone please help me to concatenate two whole number column into single measure? Thanks, -Arul
mauriciosotero
Resolver III
6 years agoHi,
Is it possible to use a calculated column? If yes, you can create:
New Column = CONCATENATE('Table'[Col1],'Table'[Col2])If it helps, I apreciate you give a kudo and mark as the solution. Thanks
Arul
Super User
6 years agoHi mauriciosotero ,
Thanks for your kind reply,
I want to create the measure not the calculated column.
Thanks,
-Arul
- mauriciosotero6 years ago
Resolver III
Hi,
If you need a measure, you may use:
Measure = CONCATENATE(SUM('Table'[Value1]),SUM('Table'[Value2]))- Arul6 years ago
Super User
Hi mauriciosotero ,
I just want to concatenate the two number columns in measure, I don't want to sum those columns before concatenating them. I hope you are getting my point.
Thanks,
-Arul
- dax6 years ago
Community Support
Hi Arul,
You could use measure like below
Measure 5 = CONCATENATE(MIN(t4[a1]),MIN(t4[amount])) or Measure 6 = MIN(t4[a1])&MIN(t4[amount])
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.