F
Frank
How can I in excel reverse the contents of a cell??
Example
Before: 1101001
after : 1001011
Thanks,
Frank
Example
Before: 1101001
after : 1001011
Thanks,
Frank
Frank said:How can I in excel reverse the contents of a cell??
Example
Before: 1101001
after : 1001011
Thanks,
Frank
FxM said:=REVERSE(...) should work on strings.
Frank said:???? not sure how this helps
....David McRitchie said:I'm not sure when strReverse was introduced, it is certainly in
Excel 2000, and I'm pretty sure it was not in Excel 95..
Function Reverse(cell As Range) As String
Reverse = strReverse(cell)
End Function ....
Function ReverseT(cell As Range) As String
ReverseT = strReverse(cell.Text)
End Function.