Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Experts
Is it possible to concatentate three measure to produce the following output...
Measure 1 (measure 2, Measure 3)
11.82 (11.32, 12.45)
so the above is my result in power BI.
Solved! Go to Solution.
@Anonymous , try this DAX measure:
Combined Measure = VAR Part1 = [Measure 1] VAR Part2 = [Measure 2] VAR Part3 = [Measure 3] VAR Result = Part1 & " (" & Part2 & ", " & Part 3 & ")" RETURN Result
@Anonymous , try this DAX measure:
Combined Measure = VAR Part1 = [Measure 1] VAR Part2 = [Measure 2] VAR Part3 = [Measure 3] VAR Result = Part1 & " (" & Part2 & ", " & Part 3 & ")" RETURN Result
many thanks Chris....Excellent feedback. Works prefectly.
You can concatenate within a concatenate, if that's whatyour asking.
Can you show the data you wan't to get that ouput from?