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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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