Hello,
The built in Access search will not work for what I was doing (multi-table form) so I made a search that basically takes a value from a textbox, runs a query and outputs the corresponding invoice number for the text that was searched upon.
I am using LASTNAME to search for an INVOICENUMBER in an order entry situation.
Everything is fine, until I try to get the form to move to the record that is found.
I originally used the GoToRecord method, but I soon realized that it was taking me to the actual RECORD number and not the record who's INVOICENUMBER matches the value of my search results.
Example: A search for the name 'SMITH' reveals that SMITH's INVOICENUMBER is 147.
How can I get my form to move to the corresponding record for SMITH, knowing that his record will be WHERE INVOICENUMBER = 147 ?
Thanks! I hope you understand what I am trying to do.
The built in Access search will not work for what I was doing (multi-table form) so I made a search that basically takes a value from a textbox, runs a query and outputs the corresponding invoice number for the text that was searched upon.
I am using LASTNAME to search for an INVOICENUMBER in an order entry situation.
Everything is fine, until I try to get the form to move to the record that is found.
I originally used the GoToRecord method, but I soon realized that it was taking me to the actual RECORD number and not the record who's INVOICENUMBER matches the value of my search results.
Example: A search for the name 'SMITH' reveals that SMITH's INVOICENUMBER is 147.
How can I get my form to move to the corresponding record for SMITH, knowing that his record will be WHERE INVOICENUMBER = 147 ?
Thanks! I hope you understand what I am trying to do.