Forum Discussion
Arul
6 years agoSuper User
Number Concatenation as a Measure
Hi Community,
Could anyone please help me to concatenate two whole number column into single measure?
Thanks,
-Arul
14 Replies
- mauriciosoteroResolver III
Hi,
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
- ArulSuper User
Hi mauriciosotero ,
Thanks for your kind reply,
I want to create the measure not the calculated column.
Thanks,
-Arul
- mauriciosoteroResolver III
Hi,
If you need a measure, you may use:
Measure = CONCATENATE(SUM('Table'[Value1]),SUM('Table'[Value2]))