Re: Combo Box Progressive Requery
- From: pietlinden@xxxxxxxxxxx
- Date: 28 Dec 2005 15:02:47 -0800
use an outer join.
Say the datasource for the subform is tblSub
Also the rowsource for the combobox is something like
SELECT fieldA
FROM tblX
ORDER BY fieldA;
so you just change it a little...
SELECT fieldA
FROM tblX LEFT JOIN tblSub ON tblX.FieldA=tblSub.FieldA
WHERE tblSub.FieldA=NULL
ORDER BY fieldA
.
- Follow-Ups:
- Re: Combo Box Progressive Requery
- From: Robert
- Re: Combo Box Progressive Requery
- References:
- Combo Box Progressive Requery
- From: Robert
- Combo Box Progressive Requery
- Prev by Date: Re: !TAKE ADVANTAGE OF A PAYPAL FLAW! MAKE THOUSANDS LEGALLY! - "!TAKE ADVANTAGE OF A PAYPAL FLAW! MAKE THOUSANDS LEGALLY!.txt" 5312 Bytes yEnc
- Next by Date: slow query
- Previous by thread: Combo Box Progressive Requery
- Next by thread: Re: Combo Box Progressive Requery
- Index(es):
Relevant Pages
|