L
Larry
I have the following criteria in the recordsource of a report:
SELECT [Power 1].[Country Name], [Power 1].[Province Name], [Power 1].[Site
Name], [Power 1].Type, [Power 1].Lat, [Power 1].Long, [Power 1].CL, [Power
1].Source, [Power 1].Comments, [Power 1].CreateDate FROM [Power 1] WHERE
((([Power 1].[Country Name])=Forms![DDBox Country Select]!CtyName)) ORDER BY
[Power 1].[Country Name], [Power 1].[Province Name], [Power 1].[Site Name];
The form referenced above in the SQL statement has one combo box named
"CtyName" which has the following row source:
SELECT [Countries and Provinces].[Country Name] FROM [Countries and
Provinces] GROUP BY [Countries and Provinces].[Country Name] ORDER BY
[Countries and Provinces].[Country Name];
The problem is that when the report is run, the form does not open, I only
get a parameter dialog box. What am I doing wrong?
Larry
SELECT [Power 1].[Country Name], [Power 1].[Province Name], [Power 1].[Site
Name], [Power 1].Type, [Power 1].Lat, [Power 1].Long, [Power 1].CL, [Power
1].Source, [Power 1].Comments, [Power 1].CreateDate FROM [Power 1] WHERE
((([Power 1].[Country Name])=Forms![DDBox Country Select]!CtyName)) ORDER BY
[Power 1].[Country Name], [Power 1].[Province Name], [Power 1].[Site Name];
The form referenced above in the SQL statement has one combo box named
"CtyName" which has the following row source:
SELECT [Countries and Provinces].[Country Name] FROM [Countries and
Provinces] GROUP BY [Countries and Provinces].[Country Name] ORDER BY
[Countries and Provinces].[Country Name];
The problem is that when the report is run, the form does not open, I only
get a parameter dialog box. What am I doing wrong?
Larry