View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Kishor
 
Posts: n/a
Default How do I reverse text (ie. get a 'mirror image') in Excel?

HI, Try this function

Function RevStr(Rng As Range)
RevStr = StrReverse(Rng.Text)
End Function


"SuperNikki" wrote:

trying to print out on a label. Text needs to be a mirror image.
thanks