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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Difference using Index

Hi, I am trying to find the difference in contractprice for same contract numbers. I have created 2 index columns and using the below dax query for calculated column but it is giving me wrong difference. 

price diff = var diff = contractlines[ContractPrice] - CALCULATE(SUM(contractlines[ContractPrice]), FILTER(contractlines, contractlines[index1] = EARLIER(contractlines[index]))) return contractlines[ContractPrice] - diff
it should give me a value of "462" for contract number 100001
 
niharikaavasthi_0-1633376372095.png

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

For the second row in your image, it's calculating as follows.

diff = 18,951.00 - (sum of [ContractPrice] where [index1] = 2 )
RETURN
    18,951.00 - ( 18,951.00 - 2,485,870.83 ) = 2,485,870.83

 

I think you want something more like this:

price diff =
VAR prev =
    LOOKUPVALUE (
        contractlines[ContractPrice],
        contractlines[ContractNumber], contractlines[ContractNumber],
        contractlines[index], contractlines[index1]
    )
RETURN
    IF ( ISBLANK ( prev ), BLANK (), contractlines[ContractPrice] - prev )

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

For the second row in your image, it's calculating as follows.

diff = 18,951.00 - (sum of [ContractPrice] where [index1] = 2 )
RETURN
    18,951.00 - ( 18,951.00 - 2,485,870.83 ) = 2,485,870.83

 

I think you want something more like this:

price diff =
VAR prev =
    LOOKUPVALUE (
        contractlines[ContractPrice],
        contractlines[ContractNumber], contractlines[ContractNumber],
        contractlines[index], contractlines[index1]
    )
RETURN
    IF ( ISBLANK ( prev ), BLANK (), contractlines[ContractPrice] - prev )

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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

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