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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Mous007
Helper IV
Helper IV

Combine two measure in same column

hi all,

 

I have two measures working perfectly but i was asked if i could combine both in the same column.

my two measures output is the following :

 

Variation of users vsLM% Variation of active users vsLM
-1-9%
-10-67%
  
-9-43%
-1-50%
  
-4-57%
  
-2-67%
  
100%
  
-8-32%

 

i want the output to be in a column in the following format: e.g. (-1) \ (-9%)

 

i tried a couple of alternative with concatenate but with no results and i was thinking mazbe i should switch to calculated columns to make it easier?. 

 

i would really appreciate if anybody can help me up or set me in the right way ?

 

Thanks in advance.

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Mous007 

use CONCATENATE() function like

Measure = 
var Measure1 = CALCULATE(SUM(Table[Value1]))
var Measure2 = CALCULATE(SUM(Table[Value2])) 
RETURN
CONCATENATE(Measure1, CONCATENATE(" / ", Measure2))

but data format will depend on your measures


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @Mous007 

use CONCATENATE() function like

Measure = 
var Measure1 = CALCULATE(SUM(Table[Value1]))
var Measure2 = CALCULATE(SUM(Table[Value2])) 
RETURN
CONCATENATE(Measure1, CONCATENATE(" / ", Measure2))

but data format will depend on your measures


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Thanks a lot @az38 , it is working perfectly,

 

As you said the only issue is with the formatting but i am playing around with the format function to solve it.

 

Many thanks again

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.