If you need to change this on a record-by-record basis, you can change the
.RowSource of your combo in the Form's Current event:
Sub Form_Current()
If YourField = "1" Then
YourCombo.RowSource = "SomeSQLString"
ElseIf YourField = "2" Then
YourCombo.RowSource = "SomeOtherSQLString"
End If
End Sub
As users navigate through the records on your continuous form, the
.rowsource will be changed ...
> Hello there
>
[quoted text clipped - 3 lines]
>
> Is there a way to do this?