triming text field on a report

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

Guest

I need to trim the first three characters of a text field when printing to a
report.
 
I need to trim the first three characters of a text field when printing to a
report.

Use an unbound control.
Set it's control source to:

=Mid([FieldName],4)
 
i tried this and keep getting #errors on the report. the text field is being
aquired from a query if that makes any difference.

fredg said:
I need to trim the first three characters of a text field when printing to a
report.

Use an unbound control.
Set it's control source to:

=Mid([FieldName],4)
 
Make sure the control has a different name than the
fieldname.
--
Marsh
MVP [MS Access]


i tried this and keep getting #errors on the report. the text field is being
aquired from a query if that makes any difference.

fredg said:
Use an unbound control.
Set it's control source to:

=Mid([FieldName],4)
 

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

Back
Top