This sql will restrict the combo Description to those records where
the subform Kataloge_Name = the KatalogName in the parent form
(tbl_Alle_Kataloge.Katalog_Name)=[Forms]![frm_Arb_Paket].[Katalogname])
Modify the rowsource of the combo to
Code:
SELECT tbl_Alle_Kataloge.AlleKatalogeID, tbl_Alle_Kataloge.GroupID
, tbl_Alle_Kataloge.Description, tbl_Alle_Kataloge.Unit_Time
, tbl_Alle_Kataloge.Size, tbl_Alle_Kataloge.Unit, tbl_Alle_Kataloge.Katalog_Name
FROM tbl_Alle_Kataloge
WHERE
(((tbl_Alle_Kataloge.GroupID)=[Forms]![frm_Arb_Paket]![subform_Kalkulationen]![GroupID])
AND
((tbl_Alle_Kataloge.Katalog_Name)=[Forms]![frm_Arb_Paket].[Katalogname]));