Hi All,
I am trying to reproduce a qeury that i use from within access, the code for the query is
SELECT MonthName(Month(tblConcern.ConDate)) AS MDate, Count(tblConcern.ConcernID) AS CountOfConcernID
FROM tblConcern
GROUP BY MonthName(Month(tblConcern.ConDate));
This runs fine within access but soon as i put it into my ASP page and try and execute it i receive the following error message:
Microsoft JET Database Engine error '80040e14'
Undefined function 'MonthName' in expression.
/concern/despchart.asp, line 34
Any ideas anyone?
Thanks
Mark
I am trying to reproduce a qeury that i use from within access, the code for the query is
SELECT MonthName(Month(tblConcern.ConDate)) AS MDate, Count(tblConcern.ConcernID) AS CountOfConcernID
FROM tblConcern
GROUP BY MonthName(Month(tblConcern.ConDate));
This runs fine within access but soon as i put it into my ASP page and try and execute it i receive the following error message:
Microsoft JET Database Engine error '80040e14'
Undefined function 'MonthName' in expression.
/concern/despchart.asp, line 34
Any ideas anyone?
Thanks
Mark