Hi,
On my form (frmMain) I have 4 combo boxes, cmbcr1, cmbcr2, cmbcr3 and cmbcr4.
I have also a submit button..
When clicked I want to pass the value selected from the combo boxes to a TblTemp.. How can I update this code;
DoCmd.RunSQL "INSERT INTO TblTemp(Que1W,Que2W, Que3W,Que4W) SELECT .......
N/B: Que1W = will store the value from cmbcr1
Que2W = will store the value from cmbcr2 etc
Thanks