Initials from NAME FIELDS

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

Guest

Access 2003
Can I restrict the output of a NAME field to print only the FIRST LETTER,
i.e., the INITIAL? Or do I have to create a separate Initial field?
 
How about
=Left([Name],1)
Do you realize that Name is a poor Name for a field (or any other object)
since every object has a name property.
 
Back
Top