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
Arul
Super User
6 years agoHi 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
dax
Community Support
6 years agoHi 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 Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.