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

Most recent previous date

HI I have a table that looks something like this

Person IDDate
A12/31/2019
A12/1/2019
A10/2/2019
A6/1/2019
B12/10/2019
B10/1/2019
C6/12/2019
C3/1/2019
C2/19/2019

 

For each row, I want to calculate what the previous date was, for that person.

For example:

Person IDDatePrevious
A12/31/201912/1/2019
A12/1/201910/2/2019
A10/2/20196/1/2019
A6/1/2019 
B12/10/201910/1/2019
B10/1/2019 
C6/12/20193/1/2019
C3/1/20192/19/2019
C2/19/2019 

How can I do this?

1 ACCEPTED SOLUTION
Adamtall
Resolver III
Resolver III

Previous date =
var date_ = 'Table'[Date]
var ID_ = 'Table'[Person ID]
return
CALCULATE(MAX('Table'[Date]);FILTER(ALL ('Table') ; 'Table'[Person ID] = ID_ && 'Table'[Date] < date_))

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

In case you want a column

new column = maxx(filter(table, table[personID]=earlier(table[personID]) && table[Date]<earlier(table[Date])),table[Date])

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

Adamtall
Resolver III
Resolver III

Previous date =
var date_ = 'Table'[Date]
var ID_ = 'Table'[Person ID]
return
CALCULATE(MAX('Table'[Date]);FILTER(ALL ('Table') ; 'Table'[Person ID] = ID_ && 'Table'[Date] < date_))
littlemojopuppy
Community Champion
Community Champion

Hi!  Take a look at this

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.