Displaying timestamps corresponding to min / max values

D

DKS

I have a table with temperature readings of different locations over a period
of time. Thus multiple records per location.

I have a query to show me the min and max temperatures for each location.

I needed to add to that query the date when the min and the max temperatures
were recorded. How could I do that?

Many thanks in anticipation.
 
J

John Spencer

This query returns two records (one for the minimum at the location and one
for the maximum)
SELECT YourTable.Location, Temperature
IIF(YourTable.Temperature = YourCurrentQuery.MinTemperature,
"Minimum","Maximum") as Which
FROM YourTable INNER JOIN YourCurrentQuery
ON YourTable.Location = YourCurrentQuery.Location
WHERE YourTable.Temperature = YourCurrentQuery.MinTemperature
OR YourTable.Temperature = YourCurrentQuery.MaxTemperature

You could probably use a crosstab query if you wanted both in one row. I
think that might look something like the following (but no guarantee on this
as I usually mess up a cross tab query at least once when I build them)

TRANSFORM First(Temperature) as TheTemp
SELECT YourTable.Location
FROM YourTable INNER JOIN YourCurrentQuery
ON YourTable.Location = YourCurrentQuery.Location
WHERE YourTable.Temperature = YourCurrentQuery.MinTemperature
OR YourTable.Temperature = YourCurrentQuery.MaxTemperature
GROUP BY YourTable.Location
PIVOT IIF(YourTable.Temperature = YourCurrentQuery.MinTemperature,
"Minimum","Maximum")

--
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

query to find when an event happened 5
Finding max value 3
Group By, Max and Min 2
Min/Max Dates 1
MIN/MAX not working 1
Min/Max Dates and Group By 2
Min/Max Dates 2
Using queried value to select field in a table 3

Top