J
jimbo jenkins
maybe i'm going about this the wrong way, but:
i've got a table (named TB_SN) with 1 field (named SN) containig
sequential list of serial numbers as text (e.g. 01_04_238), 30
records
this table is used primarily as a pick list in a form.
this form manipulates data in table DB_Checkouts (lots of fields, 20
records)
in my query i'm trying to end up with the 300 records from TB_SN wit
some extra text fields that i'm adding with an expression like th
following:
Designation:IIf([ASN]=[SN],"A",IIf([BSN]=[SN],"B","C"))
SN in TB_SN, ASN and BSN in DB_Checkouts
no problem here, this seems to work
THE PROBLEM:
I'm ending up with too many records. I'm getting 200 records for eac
of my 300 records (60,000 total). I can limit it to 150 or so by usin
In([ASN],[BSN]) as criteria for my SN field since there are 150 or s
matches. But that filters out the records in TB_SN that don't have
match in DB_Checkouts. I'm trying to get one record listed for each o
my records in TB_SN.
my logic is probably all bass ackwards here. if somebody can manage t
decipher what i'm trying to say here and has any suggestions please le
me know
thank
i've got a table (named TB_SN) with 1 field (named SN) containig
sequential list of serial numbers as text (e.g. 01_04_238), 30
records
this table is used primarily as a pick list in a form.
this form manipulates data in table DB_Checkouts (lots of fields, 20
records)
in my query i'm trying to end up with the 300 records from TB_SN wit
some extra text fields that i'm adding with an expression like th
following:
Designation:IIf([ASN]=[SN],"A",IIf([BSN]=[SN],"B","C"))
SN in TB_SN, ASN and BSN in DB_Checkouts
no problem here, this seems to work
THE PROBLEM:
I'm ending up with too many records. I'm getting 200 records for eac
of my 300 records (60,000 total). I can limit it to 150 or so by usin
In([ASN],[BSN]) as criteria for my SN field since there are 150 or s
matches. But that filters out the records in TB_SN that don't have
match in DB_Checkouts. I'm trying to get one record listed for each o
my records in TB_SN.
my logic is probably all bass ackwards here. if somebody can manage t
decipher what i'm trying to say here and has any suggestions please le
me know
thank