did you add the FROM clauses to those statements? (laughing) I left those out. maybe on accident, maybe not. I'll let you decide. 
Code:
select .....
from table .....
group by .......
etc, etc...
<EDIT>
sorry! that doesn't make much sense does it? Here's the whole thing, if you didn't catch on:
query 1 (name = query1):
Code:
select distinct Customer, dateadded
from yourtable
where dateadded = dmin("dateadded", "table", "[customer] = '" & [customer] & "'")
2nd query:
Code:
select month([DateAdded]) & "/" & year([DateAdded]) As MonthPeriod,
count(customer) as NewCustomers
from query1
group by month([DateAdded]) & "/" & year([DateAdded])
having year(month([DateAdded]) & "/" & year([DateAdded])) = 2010