I am trying to populate a combo box (Region/County) using an entered field (country). I have to use the country field in the WHERE clause to obtain the correct results set from the SQL query. I know I need to rip the data from the form, and have tried using VBa as so.
Form_Customer.Country.Requery
As an event in the AfterUpdate field.
The query look like so
SELECT DISTINCT Country.[Name], Country.[Cty], [Region Codes].[Description] FROM [Region Codes], Country WHERE [Region Codes].[Country] = Country.[Cty] AND [Region Codes].[Country] = forms![Customer]![Country].Value;
can anyone help me with this...
Form_Customer.Country.Requery
As an event in the AfterUpdate field.
The query look like so
SELECT DISTINCT Country.[Name], Country.[Cty], [Region Codes].[Description] FROM [Region Codes], Country WHERE [Region Codes].[Country] = Country.[Cty] AND [Region Codes].[Country] = forms![Customer]![Country].Value;
can anyone help me with this...