Feb 16, 2009 #1 Webkins Programmer Dec 11, 2008 118 US I am using Access 2003. Besides dropping and adding the column, is there another way to delete the entire data contents of a single column using VBA ? Thanks for the assistance.
I am using Access 2003. Besides dropping and adding the column, is there another way to delete the entire data contents of a single column using VBA ? Thanks for the assistance.
Feb 16, 2009 1 #2 Remou Technical User Sep 30, 2002 13,030 BE You can use SQL in VBA. Code: strSQL="Update tblTable Set SomeColumn = Null" CurrentDB.Execute strSQL, dbFailOnError http://lessthandot.com Upvote 0 Downvote
You can use SQL in VBA. Code: strSQL="Update tblTable Set SomeColumn = Null" CurrentDB.Execute strSQL, dbFailOnError http://lessthandot.com