Help

Re: Retrieve the most recent date

Solved
Jump to Solution
397 0
cancel
Showing results for 
Search instead for 
Did you mean: 
MarineSorato
5 - Automation Enthusiast
5 - Automation Enthusiast

I have a cell containing multiple dates.
I want to have a column retrieving the most recent date from this cell.

Which formula can I use? 

Tried with Max, or even last time modified but didn't do the trick...

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hmm, if this is a rollup field this should work fine:

Screenshot 2024-08-21 at 5.56.24 PM.png

Link to base

If your cell's in a text field this is going to be a lot more difficult though.  You'll need to use a formula field and use DATETIME_PARSE for each date, then use DATETIME_FORMAT to convert it to milliseconds and then use MAX() on that



See Solution in Thread

2 Replies 2
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hmm, if this is a rollup field this should work fine:

Screenshot 2024-08-21 at 5.56.24 PM.png

Link to base

If your cell's in a text field this is going to be a lot more difficult though.  You'll need to use a formula field and use DATETIME_PARSE for each date, then use DATETIME_FORMAT to convert it to milliseconds and then use MAX() on that



MarineSorato
5 - Automation Enthusiast
5 - Automation Enthusiast

Merci ! What I was missing was exactly this !