G Guest Apr 1, 2005 #1 Is it pretty simple to rename the field [businessphone] in table [tbcontacts] to a different name? thanks, charlie (CK)
Is it pretty simple to rename the field [businessphone] in table [tbcontacts] to a different name? thanks, charlie (CK)
D Douglas J. Steele Apr 1, 2005 #2 Yup, it's pretty simple. Using DAO, it would be: CurrentDb().TableDefs("tbcontacts").Fields("businessphone").Name = "busphone"
Yup, it's pretty simple. Using DAO, it would be: CurrentDb().TableDefs("tbcontacts").Fields("businessphone").Name = "busphone"