N
nwilliams via AccessMonster.com
I have a combo box that allows users to choose a staffID, however if a
certain item is selected in a previous combo box then my list of staffID's
needs to be limited to a certain few. Currently this is what I have.
If 27 < Service.Value < 40 Then
Me.STAFFID.DropDown="24","159","176","321","326","337","383","124","390",
"409"
End If
The certain item is the service. So if the service.value is between the range
then the staffID's should be limited to only certain ID's otherwise it should
be as I had it before an open range.
This code does not compile obviously, any ideas?
certain item is selected in a previous combo box then my list of staffID's
needs to be limited to a certain few. Currently this is what I have.
If 27 < Service.Value < 40 Then
Me.STAFFID.DropDown="24","159","176","321","326","337","383","124","390",
"409"
End If
The certain item is the service. So if the service.value is between the range
then the staffID's should be limited to only certain ID's otherwise it should
be as I had it before an open range.
This code does not compile obviously, any ideas?