Can't think of a generic formula but you could use VBA. Position cursor
over the cell you want to reverse and then run RunReverseData
Sub RunReverseData()
Dim CellAddress as string
CellAddress = Activecell.Address
Call ReverseData(CellAddress)
End Sub
Sub ReverseData(byval CellRef as string)
Dim i as Integer
Dim Data as string
Dim ShouldBe as string
ShouldBe=""
Data = Range(CellRef).Value
for i = 1 to Len(Data)
ShouldBe=ShouldBe & Mid(Data,Len(Data) - (i-1),1)
Next i
Range(CellRef).Value = ShouldBe
End Sub
Bookmarks