C
Capn Ron
I have posted this problem before and always end up with a
quote from the Help file. Either I don't understand the
quote from the Help file, (since I have the help file
too), or no one has actually tried this.
I have TableA with 4 fields: TableID, 1stData, 2ndData,
3rdData. It has 500 records.
I have TableB with 1 field: TableID. It has 5 records
which match 5 of the TableIDs in TableA
I have QueryA which selects all the fields from TableA
including the Primary Index "TableID".
I have QueryB which uses TableA and TableB and selects
only the records from TableA that have and equal TableID
in TableB.
The output of QueryA is indentical to the output of QueryB
except Query produces 500 records and QueryB produces 5.
I have FormA which has a RecordSouce "QueryA".
I have FormB which opens FormA twice using the following
code:
DoCmd.OpenForm "FormA", , , , , acDialog
DoCmd.OpenForm "FormA", , "QueryB", , , acDialog
Both produce 500 records. What am I doing wrong.
TIA
Capn
quote from the Help file. Either I don't understand the
quote from the Help file, (since I have the help file
too), or no one has actually tried this.
I have TableA with 4 fields: TableID, 1stData, 2ndData,
3rdData. It has 500 records.
I have TableB with 1 field: TableID. It has 5 records
which match 5 of the TableIDs in TableA
I have QueryA which selects all the fields from TableA
including the Primary Index "TableID".
I have QueryB which uses TableA and TableB and selects
only the records from TableA that have and equal TableID
in TableB.
The output of QueryA is indentical to the output of QueryB
except Query produces 500 records and QueryB produces 5.
I have FormA which has a RecordSouce "QueryA".
I have FormB which opens FormA twice using the following
code:
DoCmd.OpenForm "FormA", , , , , acDialog
DoCmd.OpenForm "FormA", , "QueryB", , , acDialog
Both produce 500 records. What am I doing wrong.
TIA
Capn