You can index on multiple fields, eg Firstname + Lastname without having a
specific field (FirstnameLastname)
> If I may ask a related question Douglas, is it legit to then write that
> computed value back to an empty field (reserved for the job of course) in
[quoted text clipped - 54 lines]
> >>
> >> Thank you for your time.
It's not recommended that you store values that can be easily computed
unless there's a legitimate need for them to be calculated (i.e.: that you
have a need to be able to show what the value calculated at the time was, in
case it changes). I don't see this example falling into that category.
It's generally faster to do an arithmetic calculation than it is to retrieve
the field from the database. The real reason for not storing the value, in
my opinion, though, is to ensure that you don't accidentally change one of
the numbers involved in the calculation and forget to recalculate the other
value(s). In that case, how do you know which number is correct if, for
example, you'd changed Time End on row 1 from 2:10 to 2:20, but Elapsed Time
is still 40 minutes?
And, as was pointed out elsewhere in this thread, there's definitely no need
to join fields for the purposes of indexing. An index in Access can contain
up to 10 separate fields.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> If I may ask a related question Douglas, is it legit to then write that
> computed value back to an empty field (reserved for the job of course) in
[quoted text clipped - 56 lines]
>>>
>>> Thank you for your time.
melloh - 18 Apr 2005 03:07 GMT
Well that's a bummer. Thank you for such a quick response. I"m wondering,
then, is this something that can be done w/ Excel? I tried
adding/subtracting times and it didn't quite work out.... Thanks much.
Cheers,
Henry
> It's not recommended that you store values that can be easily computed
> unless there's a legitimate need for them to be calculated (i.e.: that you
[quoted text clipped - 73 lines]
> >>>
> >>> Thank you for your time.
Douglas J. Steele - 18 Apr 2005 22:58 GMT
Why not create a query as I suggested?

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Well that's a bummer. Thank you for such a quick response. I"m
> wondering,
[quoted text clipped - 101 lines]
>> >>>
>> >>> Thank you for your time.
Charlie Tame - 18 Apr 2005 04:53 GMT
Answering your post Douglas but thanks to DL as well. Yes I do see the point
however with systems I have used before the indexing situation would have
been valid as it kept a separate index file for each field indexed, but this
was back when 25MHz was considered fast enough and the whole of Windows
would fit in what is now considered an "Update" :)
Thanks again, these common knowledge things (to you guys) are invaluable to
anyone not familiar with programs.
Charlie
> It's not recommended that you store values that can be easily computed
> unless there's a legitimate need for them to be calculated (i.e.: that you
[quoted text clipped - 74 lines]
>>>>
>>>> Thank you for your time.