Microsoft
Software
Hardware
Network
Question : Auto Format data in Access to Capitalize first letters
I have a field that holds "Firstname Lastname" data and I would like to know if it is possible to auto format this field (in access) so that it will capitalize the first letter of the first name and the first letter of the last name automatically.
Answer : Auto Format data in Access to Capitalize first letters
Auto-magically, no.
Usign an update query, yes.
UPDATE YourTableName
SET Something = StrConv(Something,3)
Random Solutions
Convert SBS 2008 P2V
sql stored procedure select compare dates null issue
SQL Server BIT field true and false
CRM 4.0 how to get all notes to show up in report
Email Address in Outlook express
How to collapse columns and rows in excel?
Convert VarPtr to VB.Net
Access 2003 to 2007 customize menu ribbon
Merge Replication initialization error
Hide / Unhide Combo Boxes using Visible property Conditionally