Not a lot to explain, you know the string is twice as long as you need, so, starting on the left, you need to return half of the string, LEN(A1)/2.
You could equally use RIGHT(), to return the second half. In your case it is the same as the first half.
Formula:
=RIGHT(A1,LEN(A1)/2)
This isn't programming, it's native formula.
Excels' programming language is VBa. Code for this might look like this.
In a standard module.
Sub HalfString()
Dim n As Long, LastRow As Long
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For n = 1 To LastRow
Cells(n, "A") = Left(Cells(n, "A"), Len(Cells(n, "A")) / 2)
Next
End Sub
Bookmarks