Here is my query:
SELECT IDTank, MAX(dtmDate), ysnSterilized, ysnDetartrate
From tblCleaned;
This query is not returning only the records of my MAX(dtmDate) function. How do I enable the query to show the sterlized and detartrate information from the check boxes without including old records? Thanks for your help!
SELECT IDTank, MAX(dtmDate), ysnSterilized, ysnDetartrate
From tblCleaned;
This query is not returning only the records of my MAX(dtmDate) function. How do I enable the query to show the sterlized and detartrate information from the check boxes without including old records? Thanks for your help!