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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
sunil3M
New Member

cummulative sum

hi

 

how to create below calculation in Power in a new column.

 

 

Orderd qty =SUMIF($A$2:A2,A2,$B$2:B47)

 

SKU is column A , BACK QTY is column B and ordered qty is the result qty as per above formula in excel.

 

SKU #BACK QTYOrdered qty
IX11010067010001000
IX11010077910001000
IX11010067010002000
IX11010077910002000
IX11010067010003000
IX11010067010004000
IX11010067010005000
IX11010067010006000
IX11010067030009000
IX1101007792000022000
 
 

 

 

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @sunil3M ,

 

Try the following formual:

Order qty1 = 
SUMX (
    FILTER (
        'Table',
        [SKU #] = EARLIER ( [SKU #] )
            && [Index] <= EARLIER ( [Index] )
    ),
    [BACK QTY]
)

v-henryk-mstf_0-1614669804396.png


Best Regards,
Henry


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

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @sunil3M ,

 

Try the following formual:

Order qty1 = 
SUMX (
    FILTER (
        'Table',
        [SKU #] = EARLIER ( [SKU #] )
            && [Index] <= EARLIER ( [Index] )
    ),
    [BACK QTY]
)

v-henryk-mstf_0-1614669804396.png


Best Regards,
Henry


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

 

amitchandak
Super User
Super User

@sunil3M , You need have date column. If not add an index column and try

 

Add an index column https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi

 

New column = sumx(filter(Table, [SKU #] =earlier([SKU #]) && [Index] <= earlier([Index])),[BACK QTY])

 

or new measure =
sumx(filter(allselected(Table), Table[SKU #] =max(Table[SKU #]) && Table[Index] <= max(Table[Index])),Table[BACK QTY])

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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