> I have a query which includes the first name and surname
>
[quoted text clipped - 3 lines]
> Could anyone offer any advice on how to achieve this please
> Steve
It's not clear.
Do you have one field that contains both names "Steve Goodman" (not
good design), or two fields, one for the first name "Steve" and the
other for the last name "Goodman" (good design)?
If one field...
Add a new column to the query.
Initial:Left([NameField],1) & " " &
Mid([NameField],InStr([NameField]," ")+1)
If you are using 2 separate fields, then:
Initial:Left(FirstName,1) & " " & [LastName]

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
steve goodrich - 12 Jan 2008 18:13 GMT
Hi Fred
Thanks for the quick response.
I am using 2 fields,
Where do I enter the text you suggested
thanks
Steve
>> I have a query which includes the first name and surname
>>
[quoted text clipped - 18 lines]
>
> Initial:Left(FirstName,1) & " " & [LastName]
fredg - 12 Jan 2008 18:27 GMT
> Hi Fred
> Thanks for the quick response.
[quoted text clipped - 25 lines]
>>
>> Initial:Left(FirstName,1) & " " & [LastName]
Regarding >> I have a query which includes the first name and
surname<<
As written, in your query.
Add a new column, exactly as I wrote it.
The text before the colon is what the name of the column will be. In
my example it will be [Initial].
You can name it anything else you wish, i.e.
MyName:Left(... etc)
or
SomethingElse:Left( ... etc.)
Just avoid Access reserved words, such as "Name", etc.

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
steve goodrich - 12 Jan 2008 20:12 GMT
Thanks Fred
got it working
Steve
>> Hi Fred
>> Thanks for the quick response.
[quoted text clipped - 38 lines]
>
> Just avoid Access reserved words, such as "Name", etc.