I have a table that I use in this database that stores addresses, names,
telephone numbers, etc. that I enter when I complete a job. If at some point
in time I visit the same address is there a way to re-populate the fields
with the exsisting information from the previous time I was at the address?
I think you're missing the point of how relational databases work! You don't
want to "repopulate" the table, storing the same data twice; this information
should be stored only once.
You can use the Combo Box tool on the form design toolbox to create a combo
which will *locate and display* an existing record; click the magic wand icon
on the toolbox and select the combo box tool, and choose the option "use this
combo to locate an existing record".
If you're using a table datasheet to interact with the data - don't. Tables
are of VERY limited utility (this is one of many things they can't do); Forms
are much more powerful and more flexible. If you're stuck using tables, you
can use the "binoculars" search tool to find an existing record.