mpaulbattle
Registered User.
- Local time
- Today, 16:47
- Joined
- Nov 30, 2017
- Messages
- 56
Is there a way to make my combo box multi selection if my row source is a query based on the table?
tblCredentials
CredentialID-Autonumber
Credentials-Text (Combo Box, Value List, Allow Multiple Values)
Form
My combo box is set as
Control Source-CredentialID
Row Source-
Row Source Type-Table/Query
tblCredentials
CredentialID-Autonumber
Credentials-Text (Combo Box, Value List, Allow Multiple Values)
Form
My combo box is set as
Control Source-CredentialID
Row Source-
Code:
SELECT tblProvidersSpecialty.ProviderSpecialtyID_PK, tblProvidersSpecialty.ProviderSpecialty
FROM tblProvidersSpecialty;