Consegui tranformar a string em format de Data através do seguinte script:
Utilizei por base http://kb.elipse.com.br/pt-br/questions/5338/Converting+a+string-type+date+into+a+DateTime-type+one.
Agradeço a atenção dispensada.
Dim First, Last, Dif
Screen.Item("E3Browser3").Item("Consulta2").SetVariableValue "OP", "00061500" & Application.GetObject("[LP&A].Mesa_Throughput.OP").Value
Set rs = Screen.Item("E3Browser3").Item("Consulta2").GetADORecordset()
rs.MoveFirst
First = rs.Fields.Item("CreatedDate").Value
Screen.Item("HORA_INICIO").Value = First
rs.MoveLast
Last = rs.Fields.Item("CreatedDate").Value
Screen.Item("HORA_FIM").Value = Last
MsgBox Screen.Item("HORA_INICIO").Value
MsgBox Screen.Item("HORA_FIM").Value
SegundosAux = Right(Screen.Item("HORA_INICIO").Value, 6)
Segundos = Left(SegundosAux, 2)
MinutosAux = Right(Screen.Item("HORA_INICIO").Value, 9)
Minutos = Left(MinutosAux, 2)
HorasAux = Right(Screen.Item("HORA_INICIO").Value, 12)
Horas = Left(HorasAux, 2)
DiaAux = Left(Screen.Item("HORA_INICIO").Value, 10)
Dia = Right(DiaAux, 2)
MesAux = Left(Screen.Item("HORA_INICIO").Value, 7)
Mes = Right(MesAux, 2)
Ano = Left(Screen.Item("HORA_INICIO").Value, 4)
SegundosAux1 = Right(Screen.Item("HORA_FIM").Value, 6)
Segundos1 = Left(SegundosAux1, 2)
MinutosAux1 = Right(Screen.Item("HORA_FIM").Value, 9)
Minutos1 = Left(MinutosAux1, 2)
HorasAux1 = Right(Screen.Item("HORA_FIM").Value, 12)
Horas1 = Left(HorasAux1, 2)
DiaAux1 = Left(Screen.Item("HORA_FIM").Value, 10)
Dia1 = Right(DiaAux1, 2)
MesAux1 = Left(Screen.Item("HORA_FIM").Value, 7)
Mes1 = Right(MesAux1, 2)
Ano1 = Left(Screen.Item("HORA_FIM").Value, 4)
Str_data = Dia &"/"& Mes &"/"& Ano &" "& Horas &":"& Minutos &":"& Segundos
Screen.Item("HORA_INICIO").Value = CDate(Str_data)
MsgBox Screen.Item("HORA_INICIO").Value
Str_data1 = Dia1 &"/"& Mes1 &"/"& Ano1 &" "& Horas1 &":"& Minutos1 &":"& Segundos1
Screen.Item("HORA_FIM").Value = CDate(Str_data1)
MsgBox Screen.Item("HORA_FIM").Value
Diferenca = Screen.Item("HORA_FIM").Value - Screen.Item("HORA_INICIO").Value
Diferencaa = Diferenca/(1/24)
MsgBox Diferenca
MsgBox Diferencaa