ScottishFencer
Technical User
I have a DB which contains a lst of 'standards' which need to be assessed to see if a minimum level has been met. each standard is numbered 1.1 1.2 1.3 and so on. They also have an 'award level': Below, Achieves, Exceeds and Outstanding. I am attempting to find a way that allows me to ask the following question:
If 1.1 -> 1.6 is Exceeds or Outstanding then it is pass, else fail.
There are other sections 3,4,5,6,7 and 8 all number as above.
In order for the assessment to pass there must be a pass in every section (1,3,4,5,6,7 and 8).
I've got a crude filter which gives me these criteria but now I am stuck for a way to evaluate the crude result set. Any ideas?
crude filter:
If 1.1 -> 1.6 is Exceeds or Outstanding then it is pass, else fail.
There are other sections 3,4,5,6,7 and 8 all number as above.
In order for the assessment to pass there must be a pass in every section (1,3,4,5,6,7 and 8).
I've got a crude filter which gives me these criteria but now I am stuck for a way to evaluate the crude result set. Any ideas?
crude filter:
Code:
SELECT tblCADOffice.txtMem, Max(tblSADOffice.txtAssID) AS MaxOftxtAssID, tblSADOffice.txtCode, tblSADOffice.memTrans
FROM tblSADOffice INNER JOIN tblCADOffice ON tblSADOffice.txtAssID = tblCADOffice.txtID
WHERE (((tblCADOffice.txtMem) Like "es*") AND ((tblSADOffice.txtScheme)="vsf") AND ((tblSADOffice.txtCode) Like "1.*" Or (tblSADOffice.txtCode) Like "3.*" Or (tblSADOffice.txtCode) Like "4.*" Or (tblSADOffice.txtCode) Like "5.*" Or (tblSADOffice.txtCode) Like "6.*" Or (tblSADOffice.txtCode) Like "7.*" Or (tblSADOffice.txtCode) Like "8.*") AND ((tblSADOffice.memTrans) Not Like "*below*" And (tblSADOffice.memTrans) Not Like "*achieves*" And (tblSADOffice.memTrans) Not Like "*not applicable*"))
GROUP BY tblCADOffice.txtMem, tblSADOffice.txtCode, tblSADOffice.memTrans
ORDER BY tblCADOffice.txtMem, Max(tblSADOffice.txtAssID), tblSADOffice.txtCode;