- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Most recent previous date
HI I have a table that looks something like this
Person ID | Date |
A | 12/31/2019 |
A | 12/1/2019 |
A | 10/2/2019 |
A | 6/1/2019 |
B | 12/10/2019 |
B | 10/1/2019 |
C | 6/12/2019 |
C | 3/1/2019 |
C | 2/19/2019 |
For each row, I want to calculate what the previous date was, for that person.
For example:
Person ID | Date | Previous |
A | 12/31/2019 | 12/1/2019 |
A | 12/1/2019 | 10/2/2019 |
A | 10/2/2019 | 6/1/2019 |
A | 6/1/2019 | |
B | 12/10/2019 | 10/1/2019 |
B | 10/1/2019 | |
C | 6/12/2019 | 3/1/2019 |
C | 3/1/2019 | 2/19/2019 |
C | 2/19/2019 |
How can I do this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-04-2024 11:17 AM | |||
09-10-2024 08:07 PM | |||
07-21-2024 09:38 PM | |||
05-01-2024 01:27 AM | |||
09-19-2024 12:12 PM |
User | Count |
---|---|
137 | |
107 | |
85 | |
59 | |
46 |