Reverse text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to reverse the way text appears in a text box.

For example if the entry in one text box reads 'abcdefg' I would like the
other textbox to read 'gfedcba'

Thanks in advance for your help
 
Since you posted this to the Reports group, I assume you just want it
displayed backwards.

Place a text box on your report, and set its Control Source to:
=StrReverse("abcdefg")

Make sure the Name property of this text box is not the same as the name of
any field in your report's RecordSource.
 
Back
Top