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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Federaske
Frequent Visitor

Self referencing calculated column (referencing previous row) - Power M help

Good evening,

 

hope you guys can help me! I inherited an old heavy-hard coded file with various cell references and formulas I am now trying to automate.

I need one last step with my PQ query, I need to add a calculated column that is referencing to the previous row of itself to complete a calculation. @ImkeF, I am mentioning you since I have seen a post which you already solved with a very similar issue (https://community.powerbi.com/t5/Desktop/Calculated-column-with-previous-row-referencing-same-calcul...)

Here below an example of what I need to calculate --> AVAILABLE is the calculated column I need (see on the right the calculation)

 

PRODUCT IDON-ORDERON-HANDAVAILABLE 

ABC

31500469(ONHAND[i] - ONORDER[i])
ABC29500440(AVAILABLE[i-1] - ONORDER[i])
ABC4500436(AVAILABLE[i-1] - ONORDER[i])
DEF26780751(ONHAND[i] - ONORDER[i])
DEF25780726(AVAILABLE[i-1] - ONORDER[i])
DEF89780637(AVAILABLE[i-1] - ONORDER[i])
DEF168780469(AVAILABLE[i-1] - ONORDER[i])
GHI56-36-92(ONHAND[i] - ONORDER[i])
GHI56-36-148(AVAILABLE[i-1] - ONORDER[i])
LMN348220-128.....
LMN26220-154.....
LMN125220-279.....

 

Thank you already for the help.

 

Federico

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

Hi @Federaske ,

 

Please add an index column in the query editor, and then use DAX to create the following new column:

Column = 
var on_order= CALCULATE(SUM('Table'[ON-ORDER]),FILTER(ALLEXCEPT('Table','Table'[PRODUCT ID]),EARLIER('Table'[Index])>='Table'[Index]))
return 'Table'[ON-HAND]-on_order

Vlianlmsft_0-1624244249508.png

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

Hi @Federaske ,

 

Please add an index column in the query editor, and then use DAX to create the following new column:

Column = 
var on_order= CALCULATE(SUM('Table'[ON-ORDER]),FILTER(ALLEXCEPT('Table','Table'[PRODUCT ID]),EARLIER('Table'[Index])>='Table'[Index]))
return 'Table'[ON-HAND]-on_order

Vlianlmsft_0-1624244249508.png

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Liang,

thank you very much! Works perfectly.

Thanks again,

Bye,

 

Federico

lbendlin
Super User
Super User

You must have an index column somewhere. Please include it in your sample data.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors