M Martin Jan 5, 2006 #1 But, I don't want to EXPORT it, I only want to sent the whole Access files to my sub-company just without the content of this field.
But, I don't want to EXPORT it, I only want to sent the whole Access files to my sub-company just without the content of this field.
R Rick Brandt Jan 5, 2006 #2 Martin said: But, I don't want to EXPORT it, I only want to sent the whole Access files to my sub-company just without the content of this field. Click to expand... Then make a copy of the file and before you send it run an update query against the table. UPDATE TableName SET FieldName = Null
Martin said: But, I don't want to EXPORT it, I only want to sent the whole Access files to my sub-company just without the content of this field. Click to expand... Then make a copy of the file and before you send it run an update query against the table. UPDATE TableName SET FieldName = Null
M Martin Jan 5, 2006 #3 Thanks! Rick Brandt said: Then make a copy of the file and before you send it run an update query against the table. UPDATE TableName SET FieldName = Null Click to expand...
Thanks! Rick Brandt said: Then make a copy of the file and before you send it run an update query against the table. UPDATE TableName SET FieldName = Null Click to expand...