Microsoft
Software
Hardware
Network
Question : Access SELECT Combo box
Hi there, i have a subform with a combobox that is used to select the record of the subform, however i want to limit the row source of the combobox to show only those records that relate to a field in the master form. At the moment the combobox shows all records. The sql query looks as follows:
SELECT address_data.entity_id, address_data.type
FROM address_data;
Im thinking that i need to add a WHERE clause, but not sure how to refernce it to the field in the master form. Somthing like this:
SELECT address_data.entity_id, address_data.type WHERE address_data.entity_id = field onmaster form
FROM address_data;
Anyone able to help me with this?
Thanks
Answer : Access SELECT Combo box
use this query
SELECT address_data.entity_id, address_data.type
FROM address_data
WHERE address_data.entity_id = Forms!nameOfMainform.NameO
fControl
Random Solutions
making first word bold
Repeated Windows Update
Backup Exec 12 - Catalog issue
I am having issues with IIS and SQL Reporting services.
Setting up my first database driven web site
PPTP VPN via Windows 2008 R2
How do I fix a calculation problem in Microsoft Visual 2008?
Excel Date Time format conversion yyyy-mmm-dd hh:mm:ss to mm/dd/yyyy hh:mm:ss
Summing amount using a aggregate function in a query
How can I convert a custom control that calls User32 and Shell32 to work on Mono?