Sophie:
Well, the first thing is that Access does not have static record numbers.
While it is easy enough to "go to the 96th record according to how the
records are currently ordered", that is probably not a good idea since it
will eventually lead to problems when new records are added/deleted, if the
records are filtered, if the records are sorted differently, etc. The
current Rec #96 will not necessarily be the same as Rec #96 2 minutes from
now, much less tomorrow. Given that, it's best to avoid Rec #s as any kind
of meaningful reference. (If your users start assuming that "go to Rec #96"
will always take them to the same record, you will have a bunch of very
unhappy users on your hands with no way to "fix" things...).
So, ask yourself, how are my users most likely to want to navigate this
data? CustName, CustNumber, PO#?
With an answer to that question, a solution isn't that far away.
You might look at this article and see which method sounds closest to what
you have in mind:
http://support.microsoft.com/kb/287658/en-us
Four ways to move to a record from a Combo Box selection
While the above article doesn't specifically address the "prompt when
opening" part of your request, that aspect can be incorporated if you really
want/need it. However, having a "goto" box on the form itself (as the
article describes) has the advantage of being always available, rather than
as a separate prompt that's only seen when the form opens.
Post back and let us know how you'd like to proceed.
HTH,
--
George Nicholson
Remove 'Junk' from return address.
"Artstitches" <(E-Mail Removed)> wrote in message
news:9F2BB1A9-96C8-44F8-A0BA-(E-Mail Removed)...
> Access 2003
> I'm not sure if this is possible or not so please let me know.
> I currently open a form and am directed to the first record. (i know that
> this can be changed to go to add new record too). What I want is to add a
> step upon opening the form that asks which record to go to (ie record
> number
> 96 or add new record)
> Please note that I have not created macros and am not familiar with SQL or
> VBA so if the answer is in any of those, I will need some detailed
> explanations
>
> Thanks in advance
> Sophie