Hello,
I found a good tip about how to get distinct from a field in Access here (http://stackoverflow.com/questions/1...n-access-query) but could someone help me modify that so that I can see distinct by FIELD1, FIELD2 and FIELD3. I tried Group By in Access but that wasn't giving me what I need.
Thanks!SELECT Count(*) AS [Distinct FIELD1]
FROM (SELECT DISTINCT FIELD1 FROM data) AS [%$##@_Alias];