Hi everybody...
I'm trying to use a DCount expression. It's possible to get distinct values using a DCount in a form as Control Source, or using VBA?
I figure out a way to get distinct values by using SQL statement (in a query), like:
SELECT Count(*) AS [BookCount]
FROM (SELECT DISTINCT BookId...