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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MatSantos
Regular Visitor

Measure inside Matrix to calculate de diference

Hi guys!

I am doing a matrix with two versions and I need to calculate the diference between the second and the first.

The values are in the same column and I am using the same measure to calculate the total.

Is it possible to create a dinamic measure to calculate this?

I can change the versions, but always keeping two versions to compare the diference between it.

The choose will be from data segmentation or filter.

 

Thanks a lot for help!!!

 

MatSantos_0-1648601097012.png

 

1 ACCEPTED SOLUTION

You are using Versao in the column of the matrix. Remove that and do this:
Create this measures:

 

Total Ton R&O = 
calculate( SUM('fPlanoVendas'[Tonelada]), 'fPlanoVendas'[Version] = "2022 Rev.1 - R&O")

 

Total Ton Verdas = 
calculate( SUM('fPlanoVendas'[Tonelada]), 'fPlanoVendas'[Version] = "2022 Rev.2 - Vendas")

 

Diff = [Total Ton R&O] - [Total Ton Verdas]


Use all 3 measures in the matrix ( and dont forget to remove Versao from the column matrix)

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@MatSantos , You need to create a measure like

 

calculate( SUM('fPlanoVendas'[Tonelada]), filter('fPlanoVendas', 'fPlanoVendas'[Version] = "2022 Rev.1 R&O")) -calculate( SUM('fPlanoVendas'[Tonelada]), filter('fPlanoVendas', 'fPlanoVendas'[Version] = "2021 Rev.1 R&O"))

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Hi,

The mesure worked in the card, but when I put in the matrix shows other value and duplicate the column. 

MatSantos_0-1648638097250.png

 

You are using Versao in the column of the matrix. Remove that and do this:
Create this measures:

 

Total Ton R&O = 
calculate( SUM('fPlanoVendas'[Tonelada]), 'fPlanoVendas'[Version] = "2022 Rev.1 - R&O")

 

Total Ton Verdas = 
calculate( SUM('fPlanoVendas'[Tonelada]), 'fPlanoVendas'[Version] = "2022 Rev.2 - Vendas")

 

Diff = [Total Ton R&O] - [Total Ton Verdas]


Use all 3 measures in the matrix ( and dont forget to remove Versao from the column matrix)

Thanks a lot!!!!

It is working!

MatSantos
Regular Visitor

Total TON = SUM('fPlanoVendas'[Tonelada])
I use the same measure for both.
Tutu_in_YYC
Resident Rockstar
Resident Rockstar

Can you provide the DAX measures for those 2? R&o and Vendas?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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