G
Guest
I have a subreport with a parameter query:
SELECT tblPKProfilesAssociations.ProfilesAssociations,
tblProfiles.Description, tblProfiles.Type,
tblPKProfilesAssociations.Quantity, tblPKProfilesAssociations.Comments,
tblPKProfilesAssociations.txtProfileID, tblProfiles.AssociationNotes,
tblFinishedGoods.Brand
FROM (tblProfiles LEFT JOIN tblFinishedGoods ON tblProfiles.txtProfileID =
tblFinishedGoods.txtProfileID) INNER JOIN tblPKProfilesAssociations ON
tblProfiles.txtProfileID = tblPKProfilesAssociations.ProfilesAssociations
WHERE (((tblFinishedGoods.Brand)=[Enter Brand Name]));
This report runs fine however, when the main report is executed the
subreport prompts for a brand name but then returns nothing. In other words,
the main report is complete but the subreport is missing.
Does anyone see why this is happening?
Thanks!!!
SELECT tblPKProfilesAssociations.ProfilesAssociations,
tblProfiles.Description, tblProfiles.Type,
tblPKProfilesAssociations.Quantity, tblPKProfilesAssociations.Comments,
tblPKProfilesAssociations.txtProfileID, tblProfiles.AssociationNotes,
tblFinishedGoods.Brand
FROM (tblProfiles LEFT JOIN tblFinishedGoods ON tblProfiles.txtProfileID =
tblFinishedGoods.txtProfileID) INNER JOIN tblPKProfilesAssociations ON
tblProfiles.txtProfileID = tblPKProfilesAssociations.ProfilesAssociations
WHERE (((tblFinishedGoods.Brand)=[Enter Brand Name]));
This report runs fine however, when the main report is executed the
subreport prompts for a brand name but then returns nothing. In other words,
the main report is complete but the subreport is missing.
Does anyone see why this is happening?
Thanks!!!