I have this code in a query:
and it gives this as the result:
name ...fullname ......days bradfordscore
jo.......................... .........8
jo........ jo owen........ 8 .....8
martin.................... ..........3
martin . martin storey...3..... 3
Now I would like it to only display the 2nd and 4th line. i.e. where there isn't a fullname I dont want it to display the record.
Any ideas?
thanks
Martin
Code:
SELECT absent.name, absent.fullname, absent.Days, tbl_users.bradfordscore
FROM absent, tbl_users
WHERE (((tbl_users.Team)="IT") AND ((tbl_users.user_id)=[absent].[name]));
and it gives this as the result:
name ...fullname ......days bradfordscore
jo.......................... .........8
jo........ jo owen........ 8 .....8
martin.................... ..........3
martin . martin storey...3..... 3
Now I would like it to only display the 2nd and 4th line. i.e. where there isn't a fullname I dont want it to display the record.
Any ideas?
thanks
Martin