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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.