i created an append query in which i need current to be append into another table.
SQL
from the form its working but from subform its not working it showing enter parameter. see image
SQL
Code:
INSERT INTO PaidFeeT ( FacultyPaid, MonthYearPaid, SecurityFeePaid, AdmissionFeePaid, TotalFeePaid, SR ) SELECT FeeT.Faculty, FeeT.MonthYear, FeeT.Security, FeeT.AdmissionFee, FeeT.TotalFee, FeeT.ID FROM FeeT WHERE (((FeeT.SR)=[forms]![FeeTF]![SR]));

Comment