Retrieving first character (initial) from forename (1 Viewer)

jagstangman

Registered User.
Local time
Today, 00:12
Joined
Sep 28, 2005
Messages
20
hi, im a bit stuck. i am creating a mail merge and i want access to retrieve only the first character of the forename to input into the mail merge.

e.g. Dear Mr. R Price.

I want the 'R' to be retrieved by access from the full forename, so 'R' would be retrieved from the name Robert in the forename field.


Thx
 

jagstangman

Registered User.
Local time
Today, 00:12
Joined
Sep 28, 2005
Messages
20
ooh, quick reply. Thx.

Edit: where do i put this?
 

Pat Hartman

Super Moderator
Staff member
Local time
Yesterday, 19:12
Joined
Feb 19, 2002
Messages
43,519
In your query.

Select Left(forename, 1) as FirstInitial, SurName, ....
From YourTable;
 

Users who are viewing this thread

Top Bottom