S
Steve Goodrich
I have a simply query, Two of the fields being First Name and Surname. All
the fields in the database are in upper case.
I would like to format the query so I get the Initial only of the first
name and lower case for the Surname with a capital first letter
So STEVE GOODRICH becomes S Goodrich
I have got so far with the following in an extra column
Initial: Left([First Name],1) & " " & [Surname]
This gives me S GOODRICH
I know how to format the whole field to upper or lower case using < for
lower and > for upper but how do I get
S Goodrich
Thanks for any advice
Steve
the fields in the database are in upper case.
I would like to format the query so I get the Initial only of the first
name and lower case for the Surname with a capital first letter
So STEVE GOODRICH becomes S Goodrich
I have got so far with the following in an extra column
Initial: Left([First Name],1) & " " & [Surname]
This gives me S GOODRICH
I know how to format the whole field to upper or lower case using < for
lower and > for upper but how do I get
S Goodrich
Thanks for any advice
Steve