I have read the post and answers in the autofill post by dbell. I am having similar issues.
I have a form with nested subforms. In the second subform, I have a combo box, where I select a record and fill one field (based on a query). Based on the record selected in the combo box, I want to also fill a text box in the same subform. I have tried multiple things and can't find the one that works. This seems like it should be simple but I have spent a couple of days fighting with this one detail.
SQL from combo box query:
SELECT BPFieldsByTask.BPField, BPFieldsByTask.Score, BPFieldsByTask.Task
FROM BPFieldsByTask
WHERE (((BPFieldsByTask.Task)=[Forms]![SUNTAX Header]![Task]))
ORDER BY BPFieldsByTask.BPField;
This lets me select and populate the BPfield. I want to also fill the "score" field in the same subform, based on the BPfield selected. When the query is run independently, it gives the correct value for the "score" field. I just am having trouble getting the value into the control on the form.
Thanks in advance.