enter code hereI have a data set where I have to get rid off the student if he/she has the grade other than "F". here in an example, Brian has grades other than "F", so, Brian should not appear in my result. Only Jack should appear, as, I want EXCLUSIVELY "F" grade students.
I tried it in Webfocus using OMITS, NE functions, but I am not able to resolve the issue (Please click to see the screen shot). As mentioned above, I am only expecting jack's record, as Brian has grades other than "F". I would really appreciate your help. Thanks.
I am stuck at the last line in a code:
TABLE FILE TABLE1
PRINT
ID
NAME
Grade
WHERE (ID OMITS (PRINT * from TABLE1 WHERE (Grade NE 'F')));
That's a very complex way of querying to WF!
This piece of code, its for loading the data you showed in the image:
You could try something like this to achieve what you've asked:
That should give you the grades of Bryan.
EDIT: Changed verb from PRINT to SUM to get only one record and NOPRINT to field AA.