Yes, that sounds familiar when you try that in a query.
Whatever table serves as the RowSource for the query, try adding that table
to the query. You can then specify the criteria under the actual field from
that table instead of having to try to read the Column of the combo.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> I'm getting:
>
[quoted text clipped - 21 lines]
>> >
>> > I'm sure i'm almost there, right? :)
KitCaz - 04 May 2005 11:48 GMT
I can see the value of your suggestion. In this case, though, I do need to
refer to the combo box column because I need to know what choice the user has
made in that control.
Van T. Dinh's suggestion worked like a charm in this case. Thank you very
much for your help!
> Yes, that sounds familiar when you try that in a query.
>
[quoted text clipped - 27 lines]
> >> >
> >> > I'm sure i'm almost there, right? :)
Try:
Eval("[Forms]![FormName]![ComboBoxControl].Column(6)")
in Query / SQL. This assumes that the Form and Column 7 of the selected row
in the ComboBox has a valid value.
HTH
Van T. Dinh
MVP (Access)
> I'm getting:
>
> undefined function '[Forms]![FormName]![ComboBoxControl].Column' in expression
>
> AGH!
KitCaz - 04 May 2005 11:48 GMT
Just the thing I needed! Thanks!
> Try:
>
[quoted text clipped - 13 lines]
> >
> > AGH!