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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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