I have an access database that was developed using windows 2000. However some of the end users are still operating under windows 98. When I try to run the query,
SELECT tblchurchsuggestions.*
FROM tblchurchsuggestions
WHERE (((tblchurchsuggestions.lastupdate)>Date()-60));
within windows 98 I get the following error.
Function isn't available in expressions in query expression
'(((tblchurchsuggestions.lastupdate)>Date()-60))'
Does anyone know why it works in 2000, but gives me the above error when trying to run in 98.
SELECT tblchurchsuggestions.*
FROM tblchurchsuggestions
WHERE (((tblchurchsuggestions.lastupdate)>Date()-60));
within windows 98 I get the following error.
Function isn't available in expressions in query expression
'(((tblchurchsuggestions.lastupdate)>Date()-60))'
Does anyone know why it works in 2000, but gives me the above error when trying to run in 98.