P
Paul Blay
Thanks to the 'Find duplicates' wizard it's easy to show records where 6 or less
records have the same value in a field
(
In (SELECT [y] FROM
As Tmp GROUP BY [y] HAVING Count(*)<7 )
in the criteria)
However what I want to do is show the first 6 records whether or not there are
more than 6 records having a certain value.
Is there an equivalent SQL expression that will do the job I'm after?
records have the same value in a field
(
In (SELECT [y] FROM
in the criteria)
However what I want to do is show the first 6 records whether or not there are
more than 6 records having a certain value.
Is there an equivalent SQL expression that will do the job I'm after?