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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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