hide first characters

L

Lana

Hi all,

Is there any way to hide first 7 characters of a text field on a report?

(My text field has from 10 to 13 characters - and i want to show on report
only those which go after 7th.)

Any help would be great.
Lana
 
A

Allen Browne

Set the ControlSource of your text box to:
=Mid([NameOfYourFieldHere],8)

Change the Name property of this text box too: it cannot be the same as the
name of the field.
 
Top