Create an SQL query to collect the data for your report. Something like:
SELECT [Daily Log Sheet].[Client ID], [Daily Log Sheet].[First Name], [Daily Log Sheet].Surname, Count([Daily Log Sheet].[Client ID]) AS [CountOfClientID]
FROM [Daily Log Sheet]
GROUP BY [Daily Log Sheet].[Client ID]...