Pull part of a field

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

Guest

I have a field that gives data like H-A-0012-02 I would like on the report to
just display the A from the string.
 
Michelle

If the "A" is ALWAYS in the third position, you could use something like:
Mid([YourFieldName],3,1)
in your query.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Back
Top