VBA Code to extract date range from Cell?

Coyotex3

Active Member
Joined
Dec 12, 2021
Messages
496
Office Version
  1. 365
Platform
  1. Windows
Hi, trying to figure out a code which will allow me to extract a date range from a cell. I was able to do it using Formulas(TextBefore and TextAfter) but would like to be able to insert this inside of a larger code.

Ideally, I'd like to go from this:

Book2
ABCD
1Account TypeNotesTotalDate Range
2Bills1357888 (1/01/2020-2/01/2020)1000
3BillsMonthly (1/01/2020-2/01/2020)500
4BillsExpenses (02/01/2021-3/01/2021)1000
5Bills6000 (1/01/2020-2/01/2020)500
Sheet1


To this:

Book2
ABCD
1Account TypeNotesTotalDate Range
2Bills1357888 (1/01/2020-2/01/2020)10001/01/2020-2/01/2020
3BillsMonthly (1/01/2020-2/01/2020)5001/01/2020-2/01/2020
4BillsExpenses (02/01/2021-3/01/2021)100002/01/2021-3/01/2021
5Bills6000 (1/01/2020-2/01/2020)5001/01/2020-2/01/2020
Sheet1


Note: Range D3 contains a different date format than the other cells in Column D. The date ranges will sometimes be written as 01/01/2020 or 1/1/2020 or 01/1/2020 or 1/01/2020 etc. Is there a way of making excel recognize the different date formats and extracting them?
 
You can probably add standardising the date format to @James006's evaluate function but here is another option.
Note: It assumes that the date is in the format of your region setting. If you need to reverse day & month it will need to be modified.

VBA Code:
Sub SplitOutAndFormatDate()

    Dim wb As Workbook
    Dim sht As Worksheet
    Dim Rng As Range, destRng As Range
    Dim arr As Variant
    Dim dtFrom As Date, dtTo As Date
    Dim DateFormat As String
    Dim strSplit As Variant
    Dim LastRow As Long, i As Long
   
    Set wb = ActiveWorkbook
    Set sht = wb.Worksheets("Sheet1")       '<--- Change this to the name of your sheet or to ActiveSheet
    DateFormat = "dd/mm/yyyy"               '<--- Change to desired format
   
    LastRow = sht.Range("B" & Rows.Count).End(xlUp).Row
    With sht
        Set Rng = .Range("B2:D" & LastRow)
        arr = Rng.Value
    End With

    For i = 1 To UBound(arr)
        strSplit = Split(arr(i, 1), "(")
        strSplit = Split(Left(strSplit(1), Len(strSplit(1)) - 1), "-")
        dtFrom = DateValue(strSplit(1))
        dtTo = DateValue(strSplit(1))
        arr(i, 3) = Format(dtFrom, DateFormat) & "-" & Format(dtTo, DateFormat)
    Next i
   
    Rng.Columns(3) = Application.Index(arr, 0, 3)

End Sub
Alex my apologies, on closer inspection, it seems like I'm not getting the desired output with your code. This is what I get:
Book2
ABCD
1Account TypeNotesTotalDate Range
2Bills1357888 (1/01/2020-2/01/2020)100001/02/2020-01/02/2020
3BillsMonthly (1/01/2020-2/01/2020)50001/02/2020-01/02/2020
4BillsExpenses (02/01/2021-3/01/2021)100001/03/2021-01/03/2021
5Bills6000 (1/01/2020-2/01/2020)50001/02/2020-01/02/2020
Sheet1


The output seems to be off.
 
Upvote 0

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Thanks for testing both.
I mainly posted to address the part about making the output date a consistent.

For the from date error change this line to use 0 instead of 1
dtFrom = DateValue(strSplit(0))

It looks like you are using US date format so change this line to mm/dd or m/dd (currently dd/mm) if you don't want the leading 0
DateFormat = "mm/dd/yyyy"
 
Upvote 1
Thanks for testing both.
I mainly posted to address the part about making the output date a consistent.

For the from date error change this line to use 0 instead of 1
dtFrom = DateValue(strSplit(0))

It looks like you are using US date format so change this line to mm/dd or m/dd (currently dd/mm) if you don't want the leading 0
DateFormat = "mm/dd/yyyy"
Alex, thank you once again! I overlooked the date format at the top along with the instructions to change it to the desired format! It works beautifully now 😀
 
Upvote 0
Alex, thank you once again! I overlooked the date format at the top along with the instructions to change it to the desired format! It works beautifully now 😀

To be fair I still had an error in the dtFrom split ;). Appreciate you having tested it and providing feedback.
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,565
Members
449,038
Latest member
Guest1337

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