Maybe Access doesn't use stored procedures, even if I define them, in fact, it translates the PROCEDURE statement with the PARAMETERS statement. Anyway, I'm able to use the results of a query in another query, for instance (call this query2): Code: SELECT COUNT(*) FROM query1; given query1 is defined, for instance as: Code: SELECT * FROM table1 WHERE table1.field1...