Michel,
Thanks for your response. I think I confused myself, and
not enough detail on that example, so let me outline it
better with the actual data.
The basic information I'm trying to draw out are:
Field 1: Claim # (PK)
Field 2: Monitoring Well #
Field 3: Date of Sampling
Field 4: Benzene Results
Field 5: MTBE Results
Field 6: BTEX Results
Field 7: TPH Results
There will be multiple information for fields 2 - 7.
Example of what a report should look like after
information is entered into Access:
Claim 40050
Monitoring Well #1
Date of Sampling: 01/01/01
Benzene: 100.3
MTBE: 80.6
BTEX: 1135.7
TPH: 456.3
Date of Sampling: 03/01/01
Benzene: 99.3
MTBE: 77.6
BTEX: 1102.7
TPH: 568.3
Date of Sampling: 07/15/01
Benzene: 156.3
MTBE: 64.6
BTEX: 999.7
TPH: 357.3
Monitoring Well #2
etc.
Monitoring Well #3
etc.
Each claim would display a different number of monitoring
wells. For each well, there will be different number of
dates where samples were taken. As you can assume - it
may dramatically vary on number of wells/dates. We have
claims that have up to 30 monitoring wells that were
sampled monthly for a period of 3 years. Other claims may
have under 5, or 5-10, etc, monitoring wells that were
only sampled quarterly for a period of 2 years (many
variables). All this information needs to be entered.
I need to create a form for someone to enter the
information. Afterwards, I will need to run a report that
looks similiar to the above, along with graphs after
calculations are made.
I've been playing with this for the past week. Field 1 is
already in a table with other basic information, along
with other tables. The problem is setting up another
table (or form?) that would allow multiple information in
the same field without actually manually going through and
entering numerous rows/columns? for this.
Make any/more sense?
Thanks,
Sarr
>-----Original Message-----
>Hi,
[quoted text clipped - 53 lines]
>
>.
Michel Walsh - 16 Dec 2003 18:09 GMT
Hi,
A possible design would be
Samplings
SampleNumber, Well, DateTaken Benzene, MTBE, BTEX, TPH ' fields
1 1 xxxxxx 100.3 80.6 1135.7
456.3
... ' data
It is then a matter to link the samplings, to the claim
Claims
ClaimNumber, SampleNumber
1 1
1 2
1 3
...
In a form, you can display the whole thing with a main-form (Claims)
sub-form ( Samplings) design.
If you think other measurements can be added in the future, may be you could
remove the Benzene, MTBE, BTEX, .... fields from Samplings, and make another
table, measurements:
Measurements
SampleNumber, Product, Measurement
1 Benzene 100.3
1 MTBE 80.6
1 BTEX 1135.7
...
and, since the field name is independent of the object of the measurement,
you can add Product= whatever, if you ever measure it! On the other hand, it
give you another level of form-subform-subsubform, which may soon appear to
be too complex...
Hoping it may help,
Vanderghast, Access MVP
> Michel,
>
[quoted text clipped - 131 lines]
> >
> >.
Sarrina - 16 Dec 2003 18:17 GMT
Thanks again.
I will take a look at this route and see what I can come
up with.
Your input helps.
Thanks!
Sarr
>-----Original Message-----
>Hi,
[quoted text clipped - 175 lines]
>
>.