B
Bruce
So far I the following aggreate query. In addition to what is below I have a
date field for which should select the date that corresponds to the record
with the
Min(tbl_ASX_Data.Close). The field is called IMPORTDATE and is in the same
table.
Any help appreciated.
Bruce
SELECT tbl_ASX_Data.ASXCode, Min(tbl_ASX_Data.Close) AS MinOfClose
FROM tbl_ASX_Data
GROUP BY tbl_ASX_Data.ASXCode;
date field for which should select the date that corresponds to the record
with the
Min(tbl_ASX_Data.Close). The field is called IMPORTDATE and is in the same
table.
Any help appreciated.
Bruce
SELECT tbl_ASX_Data.ASXCode, Min(tbl_ASX_Data.Close) AS MinOfClose
FROM tbl_ASX_Data
GROUP BY tbl_ASX_Data.ASXCode;