M
Marco Alting
Hi,
I've created a form with combo-boxes to select values. And with these values
I want to run my query, to create a report. However, when I use more then 1
filter field in my query, it comes up empty. The data is in the database.
Here's my SQL for the query that is supposed to run:
SELECT [EDMS PILOT].*, * FROM [EDMS PILOT]
WHERE ((([EDMS PILOT].Portfolio) Like
[Forms]![edms_reports]![FiltPortfolio]) AND (([EDMS PILOT].Project) Like
[Forms]![edms_reports]![FiltProject]) AND (([EDMS PILOT].[Sub-Project]) Like
[Forms]![edms_reports]![FiltSubProject]) AND (([EDMS PILOT].[Document Type])
Like [Forms]![edms_reports]![FiltDocumentType]) AND (([EDMS PILOT].[Category
Discipline]) Like [Forms]![edms_reports]![FiltCategory]) AND (([EDMS
PILOT].[Key Word]) Like [Forms]![edms_reports]![FiltKeyword]));
Can anyone tell me why these multiple options will give me an empty query
result?
Thanks,
Marco
I've created a form with combo-boxes to select values. And with these values
I want to run my query, to create a report. However, when I use more then 1
filter field in my query, it comes up empty. The data is in the database.
Here's my SQL for the query that is supposed to run:
SELECT [EDMS PILOT].*, * FROM [EDMS PILOT]
WHERE ((([EDMS PILOT].Portfolio) Like
[Forms]![edms_reports]![FiltPortfolio]) AND (([EDMS PILOT].Project) Like
[Forms]![edms_reports]![FiltProject]) AND (([EDMS PILOT].[Sub-Project]) Like
[Forms]![edms_reports]![FiltSubProject]) AND (([EDMS PILOT].[Document Type])
Like [Forms]![edms_reports]![FiltDocumentType]) AND (([EDMS PILOT].[Category
Discipline]) Like [Forms]![edms_reports]![FiltCategory]) AND (([EDMS
PILOT].[Key Word]) Like [Forms]![edms_reports]![FiltKeyword]));
Can anyone tell me why these multiple options will give me an empty query
result?
Thanks,
Marco