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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

DAX getting previous value

Hi there, 

 

I have a table like that:

 

What I want to do is, getting the previous row value as shown below. There are multiple "MagazaKodu" and "FaturaSaati". I want to get previous values according to both "MagazaKodu" and "FaturaSaati". How can I handle this? I have tried "EARLIER" function but it did not work.

 

MagazaKoduFaturaSaatiFaturaSayisiPrevious Value
3004926 
300410116726
30041121131167
30041229702970
30041333883388
30041438013801
30041542044204
30041645614561

 

aaa.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous,

Create a caclulated column using DAX below.

previous value = CALCULATE(FIRSTNONBLANK(Table1[FaturaSayisi],1),FILTER(Table1,Table1[MagazaKodu]=EARLIER(Table1[MagazaKodu])&&Table1[FaturaSaati]=EARLIER(Table1[FaturaSaati])-1))

1.PNG

Regards,
Lydia

View solution in original post

5 REPLIES 5
vishakhawali
Frequent Visitor

I have a similar situation, I need cumulative Sum, but I get a circular dependency error when I create a calculated column

Anonymous
Not applicable

Hi ,

Can you help me on my solution i need somthing like this only diffrence is when i filter i want to show all the values cummilative 

Anonymous
Not applicable

Hi @Anonymous,

 

Thanks a lot. It helped me.

 

Best regards.. 

Anonymous
Not applicable

@Anonymous,

Create a caclulated column using DAX below.

previous value = CALCULATE(FIRSTNONBLANK(Table1[FaturaSayisi],1),FILTER(Table1,Table1[MagazaKodu]=EARLIER(Table1[MagazaKodu])&&Table1[FaturaSaati]=EARLIER(Table1[FaturaSaati])-1))

1.PNG

Regards,
Lydia

Very handy, Lydia @Anonymous ! Thanks for sharing!
By the way, in my case I used it to calculate the previous date value, replacing

Table1[FaturaSaati]=EARLIER(Table1[FaturaSaati])-1)

by

Table1[Date]=EARLIER(Table1[Date])-1)

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!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Solution Authors
Top Kudoed Authors