|
Vass,
I am on it, I could get the values from a cell now after manipulation I want to right is back to the same cell.
the delimiter is ":"
followin is the test code I am working on right now.
Sub test()
Dim Temp As Integer
Dim Str As String
Str = (Cells(1, 1).Value)
Temp = InStrRev((Cells(1, 1).Value), "/")
MsgBox Mid(Str, (Temp + 1), 3)
MsgBox Mid(Str, 1, Temp)
End Sub
|