Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Concatenate Values

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.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@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

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@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
Not applicable

many thanks Chris....Excellent feedback. Works prefectly.

Anonymous
Not applicable

You can concatenate within a concatenate, if that's whatyour asking.

 

Can you show the data you wan't to get that ouput from?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

Top Kudoed Authors