K
Keith G Hicks
This has me stumped. I have 2 tables involved in a query (first one shown
below) as the record source for a subform. When I run this query in SSMS it
runs fine. When I open the subform on it's own it runs fine. But when I open
the main form (which has a parent table as its source), I get the "multi
part identifier could not be bound" error. The link child and link master
field properties are set to AdjLetterSchedID. I have a second subform for
the same main form that uses antoher simpler query with the same
master/child linking and it runs okay as well in all cases.
Query for subform that doesn't work:
SELECT tAS.AdjLetterSchedID, tA.AttyID, tA.AttyOfficeName FROM
dbo.tblAdjLetterSched_AttyIDs tAS INNER JOIN dbo.tblAttorneys tA ON
(tAS.AttyID = tA.AttyID) ORDER BY tA.AttyOfficeName
Query for subform that does work:
SELECT AdjLetterSchedID, County FROM dbo.tblAdjLetterSched_Counties ORDER BY
County
I'll give more info if needed but I'm hoping this will ring a bell for
someone.
Any ideas?
Keith
below) as the record source for a subform. When I run this query in SSMS it
runs fine. When I open the subform on it's own it runs fine. But when I open
the main form (which has a parent table as its source), I get the "multi
part identifier could not be bound" error. The link child and link master
field properties are set to AdjLetterSchedID. I have a second subform for
the same main form that uses antoher simpler query with the same
master/child linking and it runs okay as well in all cases.
Query for subform that doesn't work:
SELECT tAS.AdjLetterSchedID, tA.AttyID, tA.AttyOfficeName FROM
dbo.tblAdjLetterSched_AttyIDs tAS INNER JOIN dbo.tblAttorneys tA ON
(tAS.AttyID = tA.AttyID) ORDER BY tA.AttyOfficeName
Query for subform that does work:
SELECT AdjLetterSchedID, County FROM dbo.tblAdjLetterSched_Counties ORDER BY
County
I'll give more info if needed but I'm hoping this will ring a bell for
someone.
Any ideas?
Keith