Tyler,
Nice thread y'all have going on here!
Bob's (very nice code) just allows one to easily produce a query with the
previously mentioned attributes. It has some limitations as it is single
dimensal ... Only one item is returned. In your case you might want the
date, item and price. But is is still a nice piece of code! If your user
was deciding (at runtime) whether they wanted the 5th, 6th or whatever
element, this will do it for you! Nice work Bob!
To use it, just put the code in your modules collection on your database
tab. It doesn't matter what you call the module.
If your form had a textbox for the user to enter which record to retrieve
and it was called WhichRecord:
call selmid2("query3", "fullname", 10, Me.WhichRecord, True, "nTest2")
Then, you could use query3 in any number of ways:
To feed a form,
With a DLookUp to get the next-to-last item.
With a DSum to sum their last 5 purchases, etc.
Pretty nice, and we don't even have to pay Bob.
End-of-rant ---> nice software Bob.
From another perspective:
dallr has a point in that one should always optimize queries, but when
the conditions change, one shouldn't always manually create a new query.
People are expensive!
Performance:
I don't know what Bob was basing the 750 ms on, but "generally" a user
shouldn't noticably wait. That doesn't seem too long (IN GENERAL).
But, nested Selects can be very detrimental to JET. Even with small
tables, the wait can be interminable.
Anyway, sorry for butting in Tyler, but it is an interesting topic.
I'd use Bob's routine to generate the query from a command button on
your form. Then just use his query.
If that doesn't work out, experiment with it, you just need to apply
two queries in succession (see Bob's code).
Wayne