I'm trying to use a dropdown/combo box control to move all fields (on my current form "WhereWhen") to a particular record.
"Events" is the table
"EventID" is the field
"WhereWhen" is the form
"WhereWhenEventCombo" is the name of the combo
My best attempt so far:
DoCmd.GoToRecord , acGoTo, "[Events].[EventID] = " & Forms!WhereWhen!WhereWhenEventCombo
Gets me the following error message: "Type mismatch." Note that the combo is sent to create a number corresponding to the "EventID."
Is this possible to fix?
"Events" is the table
"EventID" is the field
"WhereWhen" is the form
"WhereWhenEventCombo" is the name of the combo
My best attempt so far:
DoCmd.GoToRecord , acGoTo, "[Events].[EventID] = " & Forms!WhereWhen!WhereWhenEventCombo
Gets me the following error message: "Type mismatch." Note that the combo is sent to create a number corresponding to the "EventID."
Is this possible to fix?