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
brunoguedes
Frequent Visitor

Calculate absolute profitability

 

 

Hello,

I'm new to power bi and my English sucks. I need a lot of help. I need to calculate the absolute profitability of a column with several values that are modified by the date. According to the image below:


Can someone help me?

Image.png

 

help!!!

 

2 ACCEPTED SOLUTIONS
Sean
Community Champion
Community Champion

@brunoguedesOkay so you want the percent calculated ALWAYS from the first date selected in the slicer!

 

Like in this picture... => % of First Selected Date's Total

% Of First Selected Date Total.png

 

So to achieve this create these 4 MEASURES

 

Total Value = SUM ( Table[Value] )

First Date = CALCULATE ( FIRSTNONBLANK ( Table[Date], 1 ), ALLSELECTED ( Table ) )
First Value =
CALCULATE (
    [Total Value],
    FILTER ( ALLSELECTED ( Table ), Table[Date] = [First Date] )
)
% MEASURE = IF ( HASONEVALUE ( Table[Date] ), DIVIDE ( [Total Value] - [First Value], [First Value], 0 ) )

Hope this helps.

Good Luck! Smiley Happy

View solution in original post

Very good! Very good!

Thank you very much!!!

View solution in original post

5 REPLIES 5
Sean
Community Champion
Community Champion

@brunoguedesYou can try couple things - both should give you the same answer!

 

1) Create a MEASURE with a formula that should look something like this...

% of Grand Total =
DIVIDE (
    SUM ( TableName[Column Name] ),
    CALCULATE ( SUM ( TableName[Column Name] ), ALLSELECTED ( TableName ) ),
    0
)

OR

2) Click to the right of the column name (the one with the numbers) and use the Quick Calculation option

 

% Of Grand Total.png

 

Hope this helps.

Good Luck! Smiley Happy

 

 

Thank you for your attention,

Did not work, the result should be like the one highlighted in the blue picture. Its result was like the columns highlighted in red. I need the% value to always depart from 0 in the first row - after filtering the date.

 

Image.png

Sean
Community Champion
Community Champion

@brunoguedesOkay so you want the percent calculated ALWAYS from the first date selected in the slicer!

 

Like in this picture... => % of First Selected Date's Total

% Of First Selected Date Total.png

 

So to achieve this create these 4 MEASURES

 

Total Value = SUM ( Table[Value] )

First Date = CALCULATE ( FIRSTNONBLANK ( Table[Date], 1 ), ALLSELECTED ( Table ) )
First Value =
CALCULATE (
    [Total Value],
    FILTER ( ALLSELECTED ( Table ), Table[Date] = [First Date] )
)
% MEASURE = IF ( HASONEVALUE ( Table[Date] ), DIVIDE ( [Total Value] - [First Value], [First Value], 0 ) )

Hope this helps.

Good Luck! Smiley Happy

brother,

I need to calculate interest accrued in the period, but now it will not start from the '' zero ''. Can you help me?

 

Image.png

Very good! Very good!

Thank you very much!!!

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.