Hi,
I have create query where i have data from to tabels and also i have create some calculating fields.
Now i want to filtr out latest ConDate for each toolID and then use calculation to show just records which are bigger then frequency.
Unfortunately my access knowledge is low and I need your help to solve this issue.
Code:
SELECT Controls.IDTool, Controls.[Serial number], Controls.ConDate, Tools.User, Tools.Size, Date() AS Today, DateDiff("d",[ConDate],[Today]) AS DifDate, Tools.Frequency
FROM Tools INNER JOIN Controls ON Tools.IDTool = Controls.IDTool;