That's simply a limitation of the wizard, not of Access. Look at the SQL of
the query that's generated (you do this using the SQL View option under the
View menu while the query's open in Design view), and write your own SQL for
your required query.
Another approach would be to use the graphical query builder create a query
that selects all of the fields:
SELECT MyTable.Field1, MyTable.Field2, ... , MyTable.Fieldn
FROM MyTable
and then change that to:
SELECT MyTable.Field1, MyTable.Field2, ... , MyTable.Fieldn
FROM MyTable
GROUP BY MyTable.Field1, MyTable.Field2, ... , MyTable.Fieldn
HAVING Count(*) > 1