I'm using Microsoft Access 2007. I have two SELECT COUNT(*) statements which run ok without combining, but I want to combine those statements to use as a form recordsource via VBA.
1. SELECT Count(*) AS OrderCount FROM (SELECT DISTINCT OrderNo FROM tblDisposition);"
2. SELECT Count(*) AS ReviewCount FROM tblDisposition WHERE [ReviewClose]=0;
I know there are already lot of this kind of question such as :
Access 2007: "SELECT COUNT(DISCTINCT ..."
How do I combine 2 select statements into one?
and many more. Here's what I've tried but still failed:
SELECT (SELECT Count(*) AS OrderCount FROM (SELECT DISTINCT OrderNo FROM tblDisposition)),"
(SELECT Count(*) AS ReviewCount FROM tblDisposition WHERE [ReviewClose]=0);"
I set the combined SQL statement on myForm as recordsource and I have two textfields which I set the controlsource as OrderCount and ReviewCount. On form load event which I set the recorsource, both textfields give #NAME error but if I set only either one SQL statement, it will display the correct count on the textfield.