trueharted
Programmer
I have an Access database that has a SQL Server backend. A form within Access is pointing to the following query within Access:
SELECT *
FROM dbo_tblTimesheetDetail
WHERE (((dbo_tblTimesheetDetail.DateIn)=Date() Or (dbo_tblTimesheetDetail.DateIn) Is Null));
This works fine on my Windows 2000 with Office XP computer. However, on other computers, one of which is a Windows 98 with Office 2000, it gets an error saying "Undefined function 'Date' in expression." Any suggestions?
SELECT *
FROM dbo_tblTimesheetDetail
WHERE (((dbo_tblTimesheetDetail.DateIn)=Date() Or (dbo_tblTimesheetDetail.DateIn) Is Null));
This works fine on my Windows 2000 with Office XP computer. However, on other computers, one of which is a Windows 98 with Office 2000, it gets an error saying "Undefined function 'Date' in expression." Any suggestions?