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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Double values in one column

Hi,

I have a matrix with multiple values, to minimize the size I would like to add measures into each other.

For example I have a measure for a MAT Value calculation and one for a MAT index calculation.

What I need is an output like this: 45.555 (110)   --> MAT value (Mat index)

 

Is this possible?

1 ACCEPTED SOLUTION

@Anonymous  ok, then please adjust the measure like this

 

MAT index = ROUND([MAT Value]/[MAT LY Value]*100,0)

MAT index = 
ROUND(
   [MAT Value]/[MAT LY Value]*100
   ,0
)

 

and for the concat please use the first I posted

Concat Measures = 
Round([MAT Value],4) 
& " (" 
& [Mat Index] 
& ")"

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

View solution in original post

8 REPLIES 8
Mikelytics
Resident Rockstar
Resident Rockstar

@Anonymous 

Then you have to put the round function into the Index Measure. If you do not knwo how can you please show the index ,measure?

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!
Anonymous
Not applicable

MAT index = [MAT Value]/[MAT LY Value]*100

@Anonymous  ok, then please adjust the measure like this

 

MAT index = ROUND([MAT Value]/[MAT LY Value]*100,0)

MAT index = 
ROUND(
   [MAT Value]/[MAT LY Value]*100
   ,0
)

 

and for the concat please use the first I posted

Concat Measures = 
Round([MAT Value],4) 
& " (" 
& [Mat Index] 
& ")"

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!
Anonymous
Not applicable

Thanks!

Only struggling now with the formatting as it misses a thouasand seperator and is seen as a text. But I'll try to figure something out.

Mikelytics
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

 

Pleas try the following

 

Concat Measures = 
Round([MAT Value Measure],4) 
& " (" 
& [Mat Index Measure] 
& ")"

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!
Anonymous
Not applicable

Just one question, as it seems to work. Normally my MAT value and index are number based on whole numbers, but now the outcome is with 10 decimals. How can I fix this as your measure seems to be limited to a text field?

Hi @Anonymous 

 

you can round it with zero decimal values.

 

Concat Measures = 
Round([MAT Value Measure],4) 
& " (" 
& Round([Mat Index Measure],0) 
& ")"

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!
Anonymous
Not applicable

Won't work, probably because the mat index measure is labeled as a text with the ".

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors