pr2-eugin
Super Moderator
- Local time
- Today, 20:53
- Joined
- Nov 30, 2011
- Messages
- 8,487
Okay do this, create a hidden text box(unbound) name it hidTxtControl on the Form and set its control source as..
Then in the Append Query change it as...
Code:
= Me.ComboBoxName.Column(2)
Code:
INSERT INTO tblFitnessTest (TestID, TestMonth, TestComments)
SELECT [Forms]![frmNewTest]![myFitnessTestID] AS Expr1, [Forms]![frmNewTest]![[B]hidTxtControl[/B]] AS Expr2, [Forms]![frmNewTest]![txtComments] AS Expr3;