R
RobESD
Still struggling with this. I have form whose record
source is a table. I want the user to be able to go to a
particular record on form based on criteria entered. The
problem is the criteria has to be based on three fields in
the table. It is only by the combination of the three
fields that a particular record can be identified.
I want the user to be able to enter criteria in three
separate combo or text boxes. Then click a command button
and then have form go to that particular records based on
the criteria.
I have tried GotoRecord, DLookup, FindRecord, etc. Can
anyone get started in the right direction? Here is an
example of one of my failures:
DoCmd.FindRecord Me![cmbID] & Me![cmbTransmittal] & Me!
[Box], acAnywhere, 0, _
acSearchAll, True, acAll, True
Thanks for any help.
source is a table. I want the user to be able to go to a
particular record on form based on criteria entered. The
problem is the criteria has to be based on three fields in
the table. It is only by the combination of the three
fields that a particular record can be identified.
I want the user to be able to enter criteria in three
separate combo or text boxes. Then click a command button
and then have form go to that particular records based on
the criteria.
I have tried GotoRecord, DLookup, FindRecord, etc. Can
anyone get started in the right direction? Here is an
example of one of my failures:
DoCmd.FindRecord Me![cmbID] & Me![cmbTransmittal] & Me!
[Box], acAnywhere, 0, _
acSearchAll, True, acAll, True
Thanks for any help.