Presumably these period delimited dates are presently showing as Text strings rather than as true Dates (numbers) ?
Sub Example()
Dim rngData As Range
With Sheets("Sheet1")
On Error Resume Next
Set rngData = .UsedRange.SpecialCells(xlCellTypeConstants, xlTextValues)
On Error GoTo 0
If Not rngData Is Nothing Then
Intersect(rngData, .Range("A:A,C:C,F:G")).Replace ".", "/"
End If
Set rngData = Nothing
End With
End Sub
modify to suit but in principle above would adjust text strings within columns A:C, F & G on Sheet1 replacing . with /
(there are restrictions regards number of areas specialcells can work with)
Bookmarks