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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
FrontierGroup
Regular Visitor

Calculated column looking up previous value

Hi

 

I have the following data

 

Data Set.jpg

 

I would like to create a column subtracting the previous value, so I get a usage per line

 

Data Result.jpg

Appreciate any help

 

Thanks

 

Steve

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @FrontierGroup ,

 

follow these steps.

 

1. Add the Index column like this.

(Edit queries-->Add column--> Index Column--> from 1)

Capture122.PNG

 

2. You will get the Output something like this: (close and Apply after these steps)

Capture32.PNG

3. Now add this calculated Column like this and add the formula:

Capture22.PNG

Difference = 
 var curIndex = 'Table'[Index]
  var curCI = 'Table'[CI]
  var OLDIndex = 'Table'[Index]-1
  var oldVal = CALCULATE(
    FIRSTNONBLANK('Table'[CI],1),
    FILTER('Table', 
    'Table'[Index]=OLDIndex))
  return IF(CONTAINS('Table','Table'[Index],OLDIndex), curCI-oldVal, 0)

My output based on your sample:

Capture23.PNG

Let me know if this works.

 

Thanks,

Tejaswi

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @FrontierGroup ,

 

follow these steps.

 

1. Add the Index column like this.

(Edit queries-->Add column--> Index Column--> from 1)

Capture122.PNG

 

2. You will get the Output something like this: (close and Apply after these steps)

Capture32.PNG

3. Now add this calculated Column like this and add the formula:

Capture22.PNG

Difference = 
 var curIndex = 'Table'[Index]
  var curCI = 'Table'[CI]
  var OLDIndex = 'Table'[Index]-1
  var oldVal = CALCULATE(
    FIRSTNONBLANK('Table'[CI],1),
    FILTER('Table', 
    'Table'[Index]=OLDIndex))
  return IF(CONTAINS('Table','Table'[Index],OLDIndex), curCI-oldVal, 0)

My output based on your sample:

Capture23.PNG

Let me know if this works.

 

Thanks,

Tejaswi

Hi Tejaswi

 

Thank you for your quick response and the solution you detailed works perfectly!

 

Thanks for your help

Steve

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.