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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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.