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
Sir_night
Helper I
Helper I

Previous Record

With help from dearwatson i was able to identify the status changes between records 

https://community.powerbi.com/t5/Desktop/Combining-Dynamic-Query-Parameters-and-Append-Queries/m-p/2...

 

But i still need to be able to identify the previos record

 

my data looks like this , but how do i creat the prevouse record column 

 

DateRefstatusindexstatus changeprevouse  record
1/02/20171A000
2/02/20171A101
3/02/20171O211
4/02/20171G310
5/02/20171G400
6/02/20171G500
2 ACCEPTED SOLUTIONS
GilbertQ
Super User
Super User

Hi @Sir_night

 

You could create the following measure as long as you have got a Date table, which is required for the measure below.

 

To create a Date table you can follow this blog post: https://www.fourmoo.com/2016/09/13/power-bi-how-to-easily-create-dynamic-date-tabledimension-with-fi...

 

And then once that is done you can then create the following measure.

 

Measure Yesterday Rolling = 
CALCULATE (
    [Measure Name],
    LASTNONBLANK ( DATEADD ( 'Date'[Date], -1, DAY ), [Measure Name] )
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

View solution in original post

v-sihou-msft
Employee
Employee

@Sir_night

 

In your scenario, since you already have an index column, if you want to calculate previous record, you can create a calculated column with EARLIER to get the corresponding one:

 

previous record =
CALCULATE (
    MAX ( Table[status change] ),
    FILTER ( Table, Table[index] = EARLIER ( Table[Index] ) - 1 )
)

However, based on your data, it seems your "prevouse record" shows the next "status change", so your column might be:

 

 

=
CALCULATE (
    MAX ( Table[status change] ),
    FILTER ( Table, Table[index] = EARLIER ( Table[Index] ) + 1 )
)

Regards,

 

View solution in original post

2 REPLIES 2
v-sihou-msft
Employee
Employee

@Sir_night

 

In your scenario, since you already have an index column, if you want to calculate previous record, you can create a calculated column with EARLIER to get the corresponding one:

 

previous record =
CALCULATE (
    MAX ( Table[status change] ),
    FILTER ( Table, Table[index] = EARLIER ( Table[Index] ) - 1 )
)

However, based on your data, it seems your "prevouse record" shows the next "status change", so your column might be:

 

 

=
CALCULATE (
    MAX ( Table[status change] ),
    FILTER ( Table, Table[index] = EARLIER ( Table[Index] ) + 1 )
)

Regards,

 

GilbertQ
Super User
Super User

Hi @Sir_night

 

You could create the following measure as long as you have got a Date table, which is required for the measure below.

 

To create a Date table you can follow this blog post: https://www.fourmoo.com/2016/09/13/power-bi-how-to-easily-create-dynamic-date-tabledimension-with-fi...

 

And then once that is done you can then create the following measure.

 

Measure Yesterday Rolling = 
CALCULATE (
    [Measure Name],
    LASTNONBLANK ( DATEADD ( 'Date'[Date], -1, DAY ), [Measure Name] )
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

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.