Extract Most Current Date from Text String Cell

ripina

New Member
Joined
Nov 2, 2015
Messages
14
Have many rows with dated notes/comments in a single cell. Need to extract the notes associated with the most recent date. See example below:
2/1/18 - comment one comment one 1/27/18 - comment two comment two 12/25/17 - comment three comment three(result) 2/1/18 - comment one comment one
10/31/17 - notesnotes notes 11/1/17 - samplesamplesample (result) 11/1/17 - samplesamplesample

<tbody>
</tbody>
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
This might work if your comments are separated by a line feed. I took the liberty of pasting the extracted data to sheet 2. Change as desired.

Code:
Sub t()
Dim spl As Variant, c As Range, dt As Variant
With Sheets("Sheet1")
    For Each c In .Range("A2", .Cells(Rows.Count, 1).End(xlUp))
        If InStr(c.Value, Chr(10)) = 0 Then
            Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp)(2) = c.Value
            Exit For
        End If
        spl = Split(c.Value, Chr(10))
        For i = LBound(spl) To UBound(spl) - 1
            If IsEmpty(nt) Or nt = "" Then
                nt = spl(i)
            End If
            dt = Trim(Left(nt, InStr(nt, "-") - 1))
                If DateValue(dt) > DateValue(Trim(Left(spl(i + 1), InStr(spl(i + 1), "-") - 1))) Then
                    nt = nt
                Else
                    nt = spl(i + 1)
                End If
        Next
        If Not IsEmpty(nt) Then
            Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp)(2) = nt
        End If
        dt = ""
        nt = ""
    Next
End With
 
Last edited:
Upvote 0
Hello ripina,

If you need this to work like a worksheet formula, here is a UDF (User Defined Function) macro.

Code:
Private RegExp  As Object


Function GetMostRecentNote(ByRef Cell As Range)


    Dim Latest  As Variant
    Dim Matches As Object
    Dim n       As Long
    Dim RegExp  As Object
    Dim Text    As String
        
        Application.Volatile
        
        If RegExp Is Nothing Then
            Set RegExp = CreateObject("VBScript.RegExp")
            RegExp.Global = True
            RegExp.Pattern = "(\d{1,2}\/\d{1,2}\/\d{1,2})+"
        End If
            
            Latest = 0
            Set Matches = RegExp.Execute(Cell)
            
            For n = 0 To Matches.Count - 1
                If CDate(Matches(n)) > Latest Then
                    Latest = CDate(Matches(n))
                    If n < Matches.Count - 1 Then
                        Text = Mid(Cell, Matches(n).FirstIndex + 1, Matches(n + 1).FirstIndex)
                    Else
                        Text = Mid(Cell, Matches(n).FirstIndex + 1, Len(Cell) - Matches(n).FirstIndex + 1)
                    End If
                End If
            Next n
        
       GetMostRecentNote = Text
        
End Function

Example:
Cell A1 2/1/18 - comment one comment one 1/27/18 - comment two comment two 12/25/17 - comment three comment three
Cell D1 formula =GetMostRecentNote(A1)
 
Upvote 0
Leith- this works perfectly, thank you so much for your help with this. I really need to learn more about VBA and UDFs.
 
Upvote 0
Hello ripina,

You're welcome. Glad I could help.
 
Upvote 0

Forum statistics

Threads
1,215,446
Messages
6,124,900
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top