In Trim all text fields in MS Access database I posted a method for removing excess spaces from a field in Access. This is a guest post from Dave Braunschweig showing how to do the same using ADODB.
Continue Reading »
trim
Updated code to trim all text fields in a MS Access database
This is a guest post from Eric @ http://ventre-a-pattes.net/.
I loved your TrimAllTextFieldsAllTables [Editors note: See original post], but it fails if some tables have no text fields. Attached is a slightly modified version that fixes the issue.
Thanks again.
Continue Reading »
Formatting Zip+4 Codes
If you have a column of zip+4, this macro will remove the suffix. Simply highlight the cells in question. It will skip any zip codes that don't have the suffix. It uses the Left$ string function which is more efficient than the standard Left() and always returns the first 5 characters in the cell.
Follow Me