Hello I have 2 query:
Maxdate:
SELECT [table Receive].[client code], Max([table Receive].[Date]) AS [MaxOfDate]
FROM [List] INNER JOIN [table Receive] ON [List].[Number] = [table Receive].[Client Code]
GROUP BY [table Receive].[client code]
and the second
SELECT maxdate.[Client Code]...