Extracting Date from string in VBA

Nygie

Board Regular
Joined
Apr 15, 2015
Messages
50
Hi Everyone

Having searched a number of threads and not found the answer I am looking for I thought I would again call on your collective expertise to give me a shove in the right direction.

What I am trying to achieve is from the cell A5 which = Week ending 06/09/2019 I am extracting the date using RIGHT. My code extracts the date to the adjacent cell and formats the cell to UK date. To here it looks OK.
Excel 2007
I then copy the date into a range of cells. This is where it all goes pear shaped. The date where the day is greater than 12 show correctly as ddmmyyyy but if the day is less than 12 it shows as mmddyyyy.
I tried using DATE(RIGHT) to extract the date but it wouldn't work.
Any pointers would be greatly appreciated.

[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif] With sht
LR = sht.Range("A" & Rows.Count).End(xlUp).Row
sht.Range("B5").NumberFormat = "dd/mm/yyyy"
sht.Range("B5").Value = "=RIGHT(A5,10)"
'sht.Range("B5").Formula = "=DATE(RIGHT(A5,4),MID(A5,7,2),MID(A5,10,2)"
sht.Range("J10:J" & LR).Value = sht.Range("B5").Value
sht.Range("B7").NumberFormat = "dd/mm/yyyy"
'sht.Range("B7").Value = "=RIGHT(A7,10)"
sht.Range("K10:K" & LR).Value = sht.Range("B7").Value


End With[/FONT]
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hello Nygie,

May be this what you need.

Code:
    Dim lr  As Long
    Dim Rng As Range
    Dim sht As Worksheet
    
        Set sht = Worksheets("Sheet1")
        
        sht.Range("B5") = Right(sht.Range("A5"), 10)
        sht.Range("B5").NumberFormat = "dd/mm/yyy"
        
        lr = sht.Cells(Rows.Count, "A").End(xlUp).Row
        
        Set Rng = sht.Range("J10:J" & lr)
            Rng.Value = sht.Range("B5")
            Rng.NumberFormat = "dd/mm/yyy"
 
Upvote 0
To cope with UK style dates, try this mod to Leith's code
Code:
sht.Range("B5") = CLng(CDate(Right(sht.Range("A5"), 10)))
 
Upvote 0
Hello Nygie,

May be this what you need.

Code:
    Dim lr  As Long
    Dim Rng As Range
    Dim sht As Worksheet
    
        Set sht = Worksheets("Sheet1")
        
        sht.Range("B5") = Right(sht.Range("A5"), 10)
        sht.Range("B5").NumberFormat = "dd/mm/yyy"
        
        lr = sht.Cells(Rows.Count, "A").End(xlUp).Row
        
        Set Rng = sht.Range("J10:J" & lr)
            Rng.Value = sht.Range("B5")
            Rng.NumberFormat = "dd/mm/yyy"
Thank you Leith
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,904
Messages
6,122,169
Members
449,070
Latest member
webster33

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