I am an Access newbie. I have had some success in using the query wizard to construct simple queries and have done sufficient reading to be able to use a UNION query to provide one answer to my problem. I'm now just checking if there is an alternative answer which would allow me to consolidate tables. Here is the issue.
I have two tables representing the same information
The fields are id, Version, Product-name, Site
In Table 1 the Version field is obtained from another table by a query lookup
In Table 2 the Version field is entered by the user
The two sets of version numbers are very different formats (may not be relevant as both a text strings)
Table 1 and Table 2 may contain the same Product-name (which IS correct) which is differentiated by the source of the version number and indirectly how that version number is controlled.
I need to include version into a 3rd table in a single column. I have found that I can create create a union query for version for use in the 3rd table.
However, I was wondering if it would be better to combine Table 1 and Table 2 into a single table. To do this I would need to have a query for populating the version field that allowed either the version number to be looked up from another table or added as free text (without that free text affecting the table that is the source of the lookup for some of the version numbers). It took me a while to find out about Union queries so I'm hoping someone can put me out of my misery quicker by letting me know how to have a lookup does what is needed or confirm that it not possible
I have two tables representing the same information
The fields are id, Version, Product-name, Site
In Table 1 the Version field is obtained from another table by a query lookup
In Table 2 the Version field is entered by the user
The two sets of version numbers are very different formats (may not be relevant as both a text strings)
Table 1 and Table 2 may contain the same Product-name (which IS correct) which is differentiated by the source of the version number and indirectly how that version number is controlled.
I need to include version into a 3rd table in a single column. I have found that I can create create a union query for version for use in the 3rd table.
However, I was wondering if it would be better to combine Table 1 and Table 2 into a single table. To do this I would need to have a query for populating the version field that allowed either the version number to be looked up from another table or added as free text (without that free text affecting the table that is the source of the lookup for some of the version numbers). It took me a while to find out about Union queries so I'm hoping someone can put me out of my misery quicker by letting me know how to have a lookup does what is needed or confirm that it not possible