SELECT ID, COUNT(ID) AS TotalRecords FROM [Suppliers Extended] GROUP BY ID ORDER BY COUNT(ID) DESC;
Resulted in only showing "1"s
SELECT Recycler, COUNT(Recycler) AS TotalRecords FROM [Recyclers Query] GROUP BY Recycler ORDER BY COUNT(Recycler) DESC;
Showed a 15, 3, 5, and the remaining...