Flipping row data vertically!!

  • Thread starter export.consultants
  • Start date
E

export.consultants

Hi all,
I need to do following in excel.

column data

123456
789123

what I want is

654321
321987


Any help is highly appreciated.

C
 
G

Gord Dibben

One method...........a UDF

Public Function RevStr(rng As Range)
RevStr = StrReverse(rng.text)
End Function

=RevStr(cellref)

If you want a number to remain a number.............

=RevStr(cellref)*1


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top