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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vincent1618
New Member

previous week value

Hi everyone, can somebody help me out with this challenge I'm facing. 

 

Here is my sample data:

 

ID     Week      Var1   

1           1            no

2           1            null

3           1            yes

1           2            yes

2           2            yes

3           2            yes

 

So I have a unique ID, weeknumber and a variable (yes, no, empty). My goal is to track the changes from 0 -> 1 every week (so not from empty (null) -> 1).

 

My idea was to add a column with the value of the previous week for that unique ID. But somehow it doesn't work. This is what I've tried: 

 

previous = CALCULATE(sum(Blad1[Var1]);Blad1[ID];Blad1[week]-1) 

 

and also tried this solution, but nothing: 

 

https://stackoverflow.com/questions/40120580/power-bi-dax-calculating-last-week-sales-for-all-the-fi...

 

Does someone has a solution for this problem? Would really appreciate it!

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

 

Enter this calculated column formula

 

=CALCULATE(LASTNONBLANK(Data[Var1],1),FILTER(Data,Data[ID]=EARLIER(Data[ID])&&Data[Week]<EARLIER(Data[Week])))

 

Hope this helps.

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

1 REPLY 1
Ashish_Mathur
Super User
Super User

Hi,

 

Enter this calculated column formula

 

=CALCULATE(LASTNONBLANK(Data[Var1],1),FILTER(Data,Data[ID]=EARLIER(Data[ID])&&Data[Week]<EARLIER(Data[Week])))

 

Hope this helps.

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors