Hello,
i have begun to normalize various excel tables into an Access Database
i have a normalized company name table named
[CNAME] which is made of PK[CID] and [Name]
i also have another table which is [Public] with a [Name] field
The [Name] field has Company Names would be received from my [CNAME] table
i made an sql query "Public Names" that states
SELECT Public.Name, CNAMES.CID, CNAMES.CNAME
FROM Public, CNAMES
WHERE Public.Name=CNAME
in order to sync which customer names match from both tables, and the [CID] from my [CNAME] table
i have been using a manual update query to change the [Name] in [Public] by the [CID] that matched from my "Public Names" query
i would like to develop a VBA sequence that updates the [Name] field if there was a match on the "Public Names" query
any pointers?
Thank You
Jfer
i have begun to normalize various excel tables into an Access Database
i have a normalized company name table named
[CNAME] which is made of PK[CID] and [Name]
i also have another table which is [Public] with a [Name] field
The [Name] field has Company Names would be received from my [CNAME] table
i made an sql query "Public Names" that states
SELECT Public.Name, CNAMES.CID, CNAMES.CNAME
FROM Public, CNAMES
WHERE Public.Name=CNAME
in order to sync which customer names match from both tables, and the [CID] from my [CNAME] table
i have been using a manual update query to change the [Name] in [Public] by the [CID] that matched from my "Public Names" query
i would like to develop a VBA sequence that updates the [Name] field if there was a match on the "Public Names" query
any pointers?
Thank You
Jfer