Perhaps this will explain a little better
I have a table:
Code:
+-------------------------+-----------+------+
| realName | UCAS | BOS |
+-------------------------+-----------+------+
| Nia | 0000 | 0000 |
| Jemma | 053183570 | 0473 |
| Kevin | 073321202 | 0000 |
| Annette | 064428725 | 1438 |
| Debbi | 0000 | 0886 |
| Zoe | 052203543 | 0000 |
You can see here that a lot of people haven't in putted their BOS number, and someone hasn't entered their UCAS number.
What I want is to create a view that would output the following:
Code:
+-------------------------+--------------+
| realName | problem |
+-------------------------+--------------+
| Nia | UCAS and BOS |
| Kevin | BOS |
| Debbi | UCAS |
| Zoe | BOS |
You can see that Annette and Jemma are not included because they have correct details. Nia hasn't given us any details, so it says so - Kevin, Debbi and Zoe should be self-explanitory.
Does that help?