Hi everyone!
I have a database that tracks the risk scores (NBScore) of projects being introduced into the system. The risk score is on a scale from 1-9. What I need to do is generate a report that shows the number of low risk(1-3), medium risk (4-6), high risk (7-9), and unknown score (NULL) projects per month (based on ScopeReviewDate) - I'm running into trouble with this.
I have four separate queries that pull out the number of low, medium, high, and unknown per month, but I'm not sure how to have them all appear on one report. The queries all follow the same structure, which is as follows
SELECT Month(ProjEvalTrackingScoreCheck.ScopeReviewDate) AS ['Month'], Count(ProjEvalTrackingScoreCheck.NBScore) AS CountOfNBScore
FROM ProjEvalTrackingScoreCheck
WHERE (((Year([ProjEvalTrackingScoreCheck.ScopeReviewDate]))=2011) AND ((ProjEvalTrackingScoreCheck.[NBScore]) Between 1 And 3))
GROUP BY Month(ScopeReviewDate);
I am not sure how to combine these queries onto one report.
Thanks for any help!
Alex
I have a database that tracks the risk scores (NBScore) of projects being introduced into the system. The risk score is on a scale from 1-9. What I need to do is generate a report that shows the number of low risk(1-3), medium risk (4-6), high risk (7-9), and unknown score (NULL) projects per month (based on ScopeReviewDate) - I'm running into trouble with this.
I have four separate queries that pull out the number of low, medium, high, and unknown per month, but I'm not sure how to have them all appear on one report. The queries all follow the same structure, which is as follows
SELECT Month(ProjEvalTrackingScoreCheck.ScopeReviewDate) AS ['Month'], Count(ProjEvalTrackingScoreCheck.NBScore) AS CountOfNBScore
FROM ProjEvalTrackingScoreCheck
WHERE (((Year([ProjEvalTrackingScoreCheck.ScopeReviewDate]))=2011) AND ((ProjEvalTrackingScoreCheck.[NBScore]) Between 1 And 3))
GROUP BY Month(ScopeReviewDate);
I am not sure how to combine these queries onto one report.
Thanks for any help!
Alex