bs0d
Well-known Member
- Joined
- Dec 29, 2006
- Messages
- 622
So I have a corporate database that lists unique items and properties for the items in a table. This table is linked to a local access db, and I cannot add fields to it.
Therefore, I'd like to create a table that mirror's all the same unique rows of the corporate table -- and have my own properties (fields) associated with them. This way, when a new item is added, I don't need to update my local table, it will automatically update by itself.
I thought I could do this by making the property_id primary key field a lookup.
Limit to list, no duplicates . But this results in a combo box populated with the id's, rather than populating the rows of the table with the ID's... This is probably an easy solution, but how can I achieve what I'm after here? Thanks,
Therefore, I'd like to create a table that mirror's all the same unique rows of the corporate table -- and have my own properties (fields) associated with them. This way, when a new item is added, I don't need to update my local table, it will automatically update by itself.
I thought I could do this by making the property_id primary key field a lookup.
Code:
Select corporate.property_id from corporate;
Limit to list, no duplicates . But this results in a combo box populated with the id's, rather than populating the rows of the table with the ID's... This is probably an easy solution, but how can I achieve what I'm after here? Thanks,