G
Guest
Thanks very much to Allen Browne who helped with the following SQL View:
SELECT (SELECT Max([DateOfService]) FROM tblSales WHERE tblSales.SiteID =
[T4-Sites].SiteID) AS LastSale, [T4-Sites].SiteID
FROM [T4-Sites];
I would like the "LastSale" field to be red if date is older than 14 days.
The field is not brought into a form using a control rather is part of a row
source/column so conditional fomatting wont work.
As part of this we would actually like older than 14 days =red, older than
30 days = Blue etc etc
Please help if you can
Daniel
SELECT (SELECT Max([DateOfService]) FROM tblSales WHERE tblSales.SiteID =
[T4-Sites].SiteID) AS LastSale, [T4-Sites].SiteID
FROM [T4-Sites];
I would like the "LastSale" field to be red if date is older than 14 days.
The field is not brought into a form using a control rather is part of a row
source/column so conditional fomatting wont work.
As part of this we would actually like older than 14 days =red, older than
30 days = Blue etc etc
Please help if you can
Daniel