To get you over the current hurdle:
get a copy of FindAndReplace from Rick Fisher at
www.rickworld.com
It's shareware and is specific to Access versions. It will allow you
to fint and replace the names of any objects in your database
structure such as the mis-named tables, etc. Remember to rename the
highest dates first so that you don't collide names.
What you really need to do is to re-do the structure of your orjects
such that you are never using the name of an object to store data.
Where dates are involved, use a datetime datatype and put the actual
date of the event being recorded and tracked into that column.. There
are ample date and time functions to enable handy resolution of just
about anything you want to know about date values and relationships.
It may take a bit of thinking and adjustment to get it right and the
changes will percolate upward through queries, forms and reports.
Once done, there should never be a need to modify the structure simply
to accommodate a new year. The work arises from someone's ignorance
in doing it the wrong way around in the first place. In othe words,
it took more work to do it that way than it would have taken to have
found out the right ways to get the job done in the first place.
There is a lot of help in the Help file and there are always these
newsgroups.
A couple of newsgroups I always recommend for Access newbies are:
microsoft.public.gettingstarted
microsoft.public.tablesdesign
A list of priceless Access resources I cribbed from the frequent posts
of John Vinson is below
Jeff Conrad's resources page:
http://www.accessmvp.com/JConrad/acc...resources.html
The Access Web resources page:
http://www.mvps.org/access/resources/index.html
Roger Carlson's tutorials, samples and tips:
http://www.rogersaccesslibrary.com/
A free tutorial written by Crystal:
http://allenbrowne.com/casu-22.html
A video how-to series by Crystal:
http://www.YouTube.com/user/LearnAccessByCrystal
MVP Allen Browne's tutorials:
http://allenbrowne.com/links.html#Tutorials
HTH
--
-Larry-
--
"Chris Moore" <(E-Mail Removed)> wrote in message
news:67FEE52B-145E-47F8-ADBE-(E-Mail Removed)...
> Access 02 sp3 on XP sp2.
>
> So, I have inherited a access database from my predesessor that
gathers and
> reports financial data for the previous year and current
year-to-date. As a
> result, many of the table names and column headers have names
specifically
> referencing "2008" and "2009". I now need to modify this database
for the
> approaching new year. Everything that says "2008" will need to be
changed to
> "2009" and everything that says "2009" will need to be changed to
"2010".
> Unfortunately this also means that all the queries, forms and
modules that
> reference these names also need to be updated. In short it's a mess.
>
> Is there any way to globally search a database for any and all
references to
> a particular value and replace that value with another? It's all
just code
> after all, right?
>
> Thanks in advance for any help offered.
>
> -Chris