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
14 Replies
- mauriciosotero
Resolver 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
- Arul
Super User
Hi mauriciosotero ,
Thanks for your kind reply,
I want to create the measure not the calculated column.
Thanks,
-Arul
- mauriciosotero
Resolver III
Hi,
If you need a measure, you may use:
Measure = CONCATENATE(SUM('Table'[Value1]),SUM('Table'[Value2]))