P
PRAV
Hi, I need to display the total number of projects of Agreed date that
is greater than Anticipated date and the differnece should be between 1
to 14 days. My query is
SELECT Count(ProjectID) AS Count_ID
FROM tblProjMilestones
WHERE (((Agreed_Date)>=[Anticipated_Date]+14));
However i'm not getting the correct answer. Could you please tell me
what i'm doing wrong.
is greater than Anticipated date and the differnece should be between 1
to 14 days. My query is
SELECT Count(ProjectID) AS Count_ID
FROM tblProjMilestones
WHERE (((Agreed_Date)>=[Anticipated_Date]+14));
However i'm not getting the correct answer. Could you please tell me
what i'm doing wrong.