|
Capitalising First Letters.
Sometimes you may import data from another database, text files, etc. and this data may all be in upper case, i.e. “JULIE MISSON” and, for readability purposes, you wish to change it to proper case, i.e. “Julie Misson”.
When calculating first letters, one method to change the data from upper case to proper case is to use an update query with the StrConv function.
To create an update query:
Go to the Queries section of the database;
Click on ‘New’, then select ‘Design View’ from the list;
Add the table with the upper case field to the query and close the Add Table window;
In the Menu Bar, click on ‘Query’ then, choose ‘Update’ query from the drop down list.
You will notice an extra row added to your Query Design Grid with the label ‘Update To:’.
|