Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
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 )
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 )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!