Hi i got this Query that gives me the results of the most recent dates. It looks like this
SELECT t.id, t.PumpgropsID, t.DateNeed, t.DateCleaned
FROM tblSlamTomning AS t INNER JOIN [SELECT PumpgropsID,
MAX(DateNeed) AS MaxNeed
FROM tblSlamTomning
GROUP BY PumpgropsID
HAVING MAX(DateNeed) >...
Hi, I have a problem with a query that's going to show the latest dates.
First i got a table with 4 columns
1. ID (Primarykey)
2. WorkplaceID (Child to Primarykey in other table)
3. DateNeed
4. DateDone
This table is storing information when a workplace needs to be cleaned and when it's been...
Hi I am trying to get an value to an unbound textbox in a form, but something in my query just returns the "query statement" it selfe in the textbox.
it looks like this:
Me.Pumptyp.Value = "SELECT tblPumpsorter.Pumpnamn" & _
"FROM tblPumpsorter" & _...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.