cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
DataVitalizer
Super User
Super User

Sum of previous values (no date column)

Hi Community,

 

I am working on the sample below , the objective is to calculatd in new column the Sum of Amounts where ID < Current_ID, in the right side the result I am supposed to get:

 

Data.png

Here is my Dax measure but it returns an empty column

Measure =

Var currentID=SUM('Table'[ID])

Return

SUMX(FILTER('Table','Table'[ID]<currentID),'Table'[Amount])

 

Thank you in advance 

1 ACCEPTED SOLUTION

Hello @Greg_Deckler

I confirm that the updated DAX returns the value taking into account only key1 while key 2 is excluded.

Once I expanded the Key2 data I got incorrect values:

Data 5.png

So I tried to add key2 to the extent, even though I didn't get the right values

Measures 
VAR currentID-MAX('DATA'[ID])
VAR key1 to MAX('DATA'[Key 1])
VAR Key2 MAX(DATA[Clave 2])
Return
SUMX(FILTER(ALL('DATA'),'DATA'[Key 1]-key1 && 'DATA'[Key 2]-Key2 &&'DATA'[ID]<currentID),'DATA'[Amount])

Thank you in advance

View solution in original post

8 REPLIES 8
amitchandak
Super User
Super User

@DataVitalizer , new column

SUMX(FILTER('Table','Table'[ID]< earlier('Table'[ID])),'Table'[Amount])

 

new Measure

SUMX(FILTER(all('Table'),'Table'[ID]< max('Table'[ID])),'Table'[Amount])

Hi,

Thank you @Greg_Deckler , @amitchandak  for your quick reply.

I've tried both suggested measures, here below what I got:

Data 3.png

 

The returned values are different than the target, here i tried to clarify more the need:

Data 2.png

 

Thank you in advance.

@DataVitalizer - I updated my post after I originally posted, please check again, I took Key1 into account.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Hello @Greg_Deckler

I confirm that the updated DAX returns the value taking into account only key1 while key 2 is excluded.

Once I expanded the Key2 data I got incorrect values:

Data 5.png

So I tried to add key2 to the extent, even though I didn't get the right values

Measures 
VAR currentID-MAX('DATA'[ID])
VAR key1 to MAX('DATA'[Key 1])
VAR Key2 MAX(DATA[Clave 2])
Return
SUMX(FILTER(ALL('DATA'),'DATA'[Key 1]-key1 && 'DATA'[Key 2]-Key2 &&'DATA'[ID]<currentID),'DATA'[Amount])

Thank you in advance

Hi Community,

Any suggestions to solve that issue ?

@Greg_Deckler , @amitchandak  any updates 🙂

 

Thank you in advance

Hi @DataVitalizer ,

 

How about the result after you follow the suggestions mentioned in my original post?

Could you please provide more details or expected result about it If it doesn't meet your requirement?

If you've fixed the issue on your own please kindly share your solution. If the above posts help, please kindly mark it as a solution to help others find it more quickly.

 

Best regards,

 

Community Support Team _ zhenbw

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

Hi @DataVitalizer ,

 

We can create a measure to meet your requirement.

 

Measure = 
CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Key 1]=MAX('Table'[Key 1]) && 'Table'[ID]<MAX('Table'[ID])))

 

sum1.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

 

Best regards,

 

Community Support Team _ zhenbw

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

 

BTW, pbix as attached.

Greg_Deckler
Super User
Super User

@DataVitalizer 

 

 

Measure =
Var currentID=MAX('Table'[ID])
VAR key1 = MAX('Table'[Key1])
Return
SUMX(FILTER(ALL('Table'),'Table'[Key1]=key1 && 'Table'[ID]<currentID),'Table'[Amount])

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors