Oct 12 2021 03:36 PM - edited Oct 12 2021 04:10 PM
I'm trying to use some regex (like here) to get just the date from following string
r = 4834, ReportDate = 10/11/2021 12:00:00 AM, Data
desired result:
10/11/2021
This seems to work:
=getTargetValueV2(A1,"ReportDate = (\w+/\w+/\w+)")
Oct 12 2021 07:25 PM
Oct 12 2021 07:32 PM - edited Oct 12 2021 07:34 PM
SolutionOr instead of using the pattern in the formula, place the following UDF on a Standard Module and then you can simply use the formula =getDate(A1) on the worksheet and then change the format of the formula cell to Date.
Function getDate(ByVal content As String) As Date
Dim Matches As Object
With CreateObject("VBScript.RegExp")
.Global = True
.ignorecase = True
.pattern = "\d{2}/\d{2}/\d{4}"
If .test(content) Then
Set Matches = .Execute(content)
getDate = Matches(0)
End If
End With
End Function