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
ILANGO_10
Frequent Visitor

Subtract the previous row with another column with multiple catagory

IMG_20230119_112026.jpg

 i need the answer needed like if A1 is one of the catagory  material have totally 5 stocks and we needed two so atlast of A1 needed it's 3 like ... D2= C2-B2 ,,, D3= D2-B3... 

D4 = C4-B4 ,,, D5=D4 -B5 

Help me to find this column...

 

 

 

 

2 ACCEPTED SOLUTIONS
v-zhangti
Community Support
Community Support

Hi, @ILANGO_10 

 

You can try the following methodsYou need to add an index column to Power Query first.

Column:

Cumulative quantity = 
CALCULATE ( SUM ( 'Table'[quantity] ),
    FILTER ( 'Table' ,
        [material] = EARLIER ( 'Table'[material] )
        && [Index] <= EARLIER ( 'Table'[Index] )
    )
)
Result = [stock]-[Cumulative quantity]

vzhangti_0-1674183525887.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

Mahesh0016
Super User
Super User

Create Calculated Column.
Needed =
VAR Sub =
    CALCULATE (
        SUM ( 'Subtract Table'[Quantity] ),
        FILTER (
            'Subtract Table',
            'Subtract Table'[Material] = EARLIER ( 'Subtract Table'[Material] )
                && 'Subtract Table'[Index] <= EARLIER ( 'Subtract Table'[Index] )
        )
    )
RETURN
    [Total Stock] - Sub


Mahesh0016_0-1674194675601.png

@ILANGO_10 i hope this help you!

View solution in original post

4 REPLIES 4
Mahesh0016
Super User
Super User

Create Calculated Column.
Needed =
VAR Sub =
    CALCULATE (
        SUM ( 'Subtract Table'[Quantity] ),
        FILTER (
            'Subtract Table',
            'Subtract Table'[Material] = EARLIER ( 'Subtract Table'[Material] )
                && 'Subtract Table'[Index] <= EARLIER ( 'Subtract Table'[Index] )
        )
    )
RETURN
    [Total Stock] - Sub


Mahesh0016_0-1674194675601.png

@ILANGO_10 i hope this help you!

Thank you so much sir... It means a lot..

v-zhangti
Community Support
Community Support

Hi, @ILANGO_10 

 

You can try the following methodsYou need to add an index column to Power Query first.

Column:

Cumulative quantity = 
CALCULATE ( SUM ( 'Table'[quantity] ),
    FILTER ( 'Table' ,
        [material] = EARLIER ( 'Table'[material] )
        && [Index] <= EARLIER ( 'Table'[Index] )
    )
)
Result = [stock]-[Cumulative quantity]

vzhangti_0-1674183525887.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

Thank you so much sir...

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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.