How to return a single character from a name field

zogpound

New member
Local time
Today, 16:55
Joined
Aug 23, 2002
Messages
7
I need a query that will return only the first character in a text field. I have done this before but can't seem to get it to work. The field name is "First Name". I have tried the following expression from the expression builder "Left (First Name, 1)" But this does not return the result I'm looking for.
Any advice is greatly appreciated.

Eric
 
Hello

try putting this in a blank column in the query
nameleftchar: Left([First Name],1)

Chris
 
That worked great. Thanks Chris.
 

Users who are viewing this thread

Back
Top Bottom