I get the error message "Can't open any more databases" when I run the following query:
I actually created it from the Design view, so I think there is nothing amiss with the instructions as such. I already found somewhere in the posts that Access can only open 32 tables at the same time. qIndProgJUN03 and qIndProgDEC03 are simple selection queries, both from the same union query, which is based on one table (stored in a different database).
Finally, the error message is in my Windows language (not English), whereas my Office is in English. Any hints?
Code:
SELECT qIndProgJUN03.Code, Sum(qIndProgJUN03.MaxOfIndValue) AS JUN03, Sum(qIndProgDEC03.MaxOfIndValue) AS DEC03
FROM qIndProgJUN03 INNER JOIN qIndProgDEC03 ON qIndProgJUN03.Code = qIndProgDEC03.Code
GROUP BY qIndProgJUN03.Code;
I actually created it from the Design view, so I think there is nothing amiss with the instructions as such. I already found somewhere in the posts that Access can only open 32 tables at the same time. qIndProgJUN03 and qIndProgDEC03 are simple selection queries, both from the same union query, which is based on one table (stored in a different database).
Finally, the error message is in my Windows language (not English), whereas my Office is in English. Any hints?