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
PietroFarias
Resolver II
Resolver II

Meça para SUM, mas descontando alguns valores antes

I have a measure that performs the sum of a column.

 

Spread: = SUM (DFC [SpreadUnit])

Now, I'd like to do a calculation that I'd like to do in a simplified way, different from what I'm currently doing. The calculation would be to perform the sum of the SpreadUnit column, BUT when the Customer for X column, for example, calculate [SpreadUnit] * (1-0,20), so that it discounts 20% of the value. What is the best way to achieve this result?

 

P.s: I'm using Power Pivot for Excel 2016

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @PietroFarias,

 

Please refer to this measure:

Measure 1 :=
IF (
    LASTNONBLANK ( Table2[Customer], 1 ) = "X",
    SUM ( [SpreadUnit] )
        * ( 1 - 0.2 ),
    CALCULATE ( SUM ( [SpreadUnit] ), ALLEXCEPT ( Table2, Table2[Customer] ) )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

 

Your question is not clear.  Show a sample dataset and the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-yulgu-msft
Employee
Employee

Hi @PietroFarias,

 

Please refer to this measure:

Measure 1 :=
IF (
    LASTNONBLANK ( Table2[Customer], 1 ) = "X",
    SUM ( [SpreadUnit] )
        * ( 1 - 0.2 ),
    CALCULATE ( SUM ( [SpreadUnit] ), ALLEXCEPT ( Table2, Table2[Customer] ) )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.