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
joeysun
Regular Visitor

Matrix - Display row value as percentage of another row

Hi all,

 

I have a matrix where I have one column with the values for each row. In a second column, I want to display each row as a percentage of the first row.

 

What I currently have: (it's not working as can be seen)support forum.JPG

 

 

 

 

 

 

 

 

 

Quick translation:

Oneindig = Infinity

Saldo = Balance

Omzet = Revenue

Inkopen = COGS
Personeelskosten = Labour costs

Bedrijfskosten = Company costs

,..

 

The balance is retrieved from a table TRANSACTIONS containing all the transactions, each transaction having an account number. 

The account numbers are grouped in a table called "Mapping" and maps each account number to a group (Revenue, etc.)

 

The measure I used is:

% of the Revenue = CALCULATE(SUM(Transactions[Saldo])) /  CALCULATE(SUM(Transactions[Saldo]); Mapping[Kop] = "Omzet")

 

Probably since the other rows in the table are mapped to a different group (not revenue), the total balance for revenue in those rows are zero. That explains the infinity since dividing by zero is not possible. 

 

How can I fix this problem? Thanks in advance! 

 

1 ACCEPTED SOLUTION
Basvanbaar
Frequent Visitor

We have found the solution: 

 

% vd Omzet = DIVIDE(CALCULATE(sum(Profit_Transactions[Saldo]));CALCULATE(sum(Profit_Transactions[Saldo]);FILTER(ALL(Mapping);Mapping[Kop] = "Omzet")))

View solution in original post

3 REPLIES 3
Basvanbaar
Frequent Visitor

We have found the solution: 

 

% vd Omzet = DIVIDE(CALCULATE(sum(Profit_Transactions[Saldo]));CALCULATE(sum(Profit_Transactions[Saldo]);FILTER(ALL(Mapping);Mapping[Kop] = "Omzet")))
v-ljerr-msft
Employee
Employee

Hi @joeysun,

 

Could you try the formula below to see if it works in your scenario? Smiley Happy

% of the Revenue =
DIVIDE (
    CALCULATE ( SUM ( Transactions[Saldo] ) );
    CALCULATE (
        SUM ( Transactions[Saldo] );
        FILTER ( ALL ( Mapping[Kop] ); Mapping[Kop] = "Omzet" )
    )
)

 

Regards

Hi @v-ljerr-msft,

 

Thanks for your reply! I'm working together with @joeysun on this project.

 

I just tested your proposed solution, but unfortunately it returns the same results (only difference is blanks instead of infinity).

 

Any other suggestions would be most welcome!

 

Kind regards

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.