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
paolomint
Helper III
Helper III

Calculation on values on the same column

Dear All,

 

I need to make a subtraction between two values on the same Column.

 

In my table I have the quantity of each ITEM at the end of the moth.

I need to add another column with the delta between two consecutive months:

 

quantity of February - quantity of Jannuary

quantity of March - quantity of Febrary

...

 

ITEMdateQuantitydelta
V3231.01.202134 
V3228.02.20217743
V3231.03.202130-47
M3731.01.202146 
M3728.02.202128-18
M3731.03.20215527

 

PowerQuery using M or Dax in PowerBI is both ok.

Thanks in advance

Paolo

  

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@paolomint 

 

You can create a calculate column using DAX by filtering with end of previous month.

Column =
var pre_eom= ENDOFMONTH(PREVIOUSMONTH('Table'[date]))
var pre_eom_quantity = CALCULATE(SUM([Quantity]),FILTER('Table',[TEM]=EARLIER([TEM]) && [date]=pre_eom))
Return IF(ISBLANK(pre_eom_quantity),BLANK(),[Quantity]-pre_eom_quantity)
 

V-pazhen-msft_0-1623810721421.png

If you don't want the blank, just use: Return [Quantity]-pre_eom_quantity

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
V-pazhen-msft
Community Support
Community Support

@paolomint 

 

You can create a calculate column using DAX by filtering with end of previous month.

Column =
var pre_eom= ENDOFMONTH(PREVIOUSMONTH('Table'[date]))
var pre_eom_quantity = CALCULATE(SUM([Quantity]),FILTER('Table',[TEM]=EARLIER([TEM]) && [date]=pre_eom))
Return IF(ISBLANK(pre_eom_quantity),BLANK(),[Quantity]-pre_eom_quantity)
 

V-pazhen-msft_0-1623810721421.png

If you don't want the blank, just use: Return [Quantity]-pre_eom_quantity

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

Jihwan_Kim
Super User
Super User

Hi, @paolomint 

Please check the below picture and the sample pbix file's link down below for creating a new column.

 

Picture1.png

 

Delta CC =
VAR currentitem = 'Table'[ITEM]
VAR rankingbydate =
RANKX ( FILTER ( 'Table', 'Table'[ITEM] = currentitem ), 'Table'[date],, ASC )
VAR previousquantity =
MAXX (
FILTER (
'Table',
'Table'[ITEM] = currentitem
&& RANKX ( FILTER ( 'Table', 'Table'[ITEM] = currentitem ), 'Table'[date],, ASC ) = rankingbydate - 1
),
'Table'[Quantity]
)
RETURN
IF ( NOT ISBLANK ( previousquantity ), 'Table'[Quantity] - previousquantity )

 

 

https://www.dropbox.com/s/7odn75hrzh0kuho/paolomint.pbix?dl=0 

 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.