How to combine 2 tables into 1
How to combine 2 tables into 1
(OP)
I have 2 access tables that I want to combine into 1 new table. There are no duplicate field names that I need to worry about. I know I can create a make table query that will combine the 2 together. The problem with the make table query is that it does not copy the definition of each field, the caption property, nor the lookup properties of each field.
How do I include those?
How do I include those?
RE: How to combine 2 tables into 1
Field properties like other access properties are really weird. There is not a Description property or Caption property. But when you add a description or property then that property is created as a member of the properties collection and the value is added.
So as you see in the code below. I look at the destination field and first create the Property description or caption. Then add that property to the fields properties collection. Then add the value.
CODE -->
I am assuming lookups are similar but more involved.
RE: How to combine 2 tables into 1
RE: How to combine 2 tables into 1
RE: How to combine 2 tables into 1
RE: How to combine 2 tables into 1
I've been thinking and I can do the lookups manually. You don't need to spend anymore time on it. I appreciate what you have done.