R
Ralph
I am attempting to build an action query in Access 2000 to update a field.
' tblJunky
jTeamID number,
jTeamTag Text(50) <--- new field
..... other fields
'tblTeam
TeamID autonumber
tTeamTag Text(50)
tblTeamJunk once contained only TeamID which contained a foreign key to the
tblTeamLookup table to retrieve the TeamTag.
I would now like to place the TeamTag info into a new field in tblTeamJunk
I have done this a zillion times before - but now while selects work just
fine - when I attempt to create an Action Query - the result is nothing but
nulls.
One attempt:
UPDATE tblTeam INNER JOIN tblJunky ON tblTeam.TeamID = tblJunky.jTeamID SET
tblJunky.jTeamTag = [tblTeam].[tTeamTag]
WHERE (((tblJunky.jTeamID)=[tblTeam].[TeamID]));
I realize I must have run into a 'Gotcha' - some hidden 'feature' I need to
repair - but have run out of things to chew on - any ideas?
-ralph
' tblJunky
jTeamID number,
jTeamTag Text(50) <--- new field
..... other fields
'tblTeam
TeamID autonumber
tTeamTag Text(50)
tblTeamJunk once contained only TeamID which contained a foreign key to the
tblTeamLookup table to retrieve the TeamTag.
I would now like to place the TeamTag info into a new field in tblTeamJunk
I have done this a zillion times before - but now while selects work just
fine - when I attempt to create an Action Query - the result is nothing but
nulls.
One attempt:
UPDATE tblTeam INNER JOIN tblJunky ON tblTeam.TeamID = tblJunky.jTeamID SET
tblJunky.jTeamTag = [tblTeam].[tTeamTag]
WHERE (((tblJunky.jTeamID)=[tblTeam].[TeamID]));
I realize I must have run into a 'Gotcha' - some hidden 'feature' I need to
repair - but have run out of things to chew on - any ideas?
-ralph