Question : adding user to an existing AD group

what are the various option to be able to edit (add/remove) user from an AD group.

(other than AD U & C)

thanks

Answer : adding user to an existing AD group

Seems Jet doesn't like subqueries when there is no FROM clause in the main query.  Try:
1:
2:
3:
4:
5:
6:
SELECT TOP 1 "row" AS Label,
    (SELECT SUM(commission) FROM [transactions] WHERE type=0 OR type=2) AS SumCommission0or2,
    (SELECT count(*) FROM users) AS UserCount,
    (SELECT count(*) FROM transactions WHERE type = 0) AS TxnCount,
    (SELECT SUM(commission) FROM [transactions] WHERE type=1) AS SumCommission1
FROM [transactions]
Random Solutions  
 
programming4us programming4us