Hey Everyone,
I have a slight problem.
I am making a database for the Microbiology department for my work, and I have several tables. I want to make a query using these fields:
Date
Room/Location
NumberOfTimes
What the field number of times is , the number of times they checked the samples that day. So in the query, I want these fields to show up:
Date
Room/Location
Total number of samples(and a field I create myself) that will multiply the [NumberOfTimes] * 7.
That works out perfectly , for every day i see the total number ofsamples for that day.
Now I want to make a separate query that would group the different locations and add up the number of samples just for that room.
When I do that
I do GroupBy [Room/Location]
and Sum [TotalNumberOfSamples]
but it gives me a HUGE number, very irrelavant
do you know whats the issue here?
I have a slight problem.
I am making a database for the Microbiology department for my work, and I have several tables. I want to make a query using these fields:
Date
Room/Location
NumberOfTimes
What the field number of times is , the number of times they checked the samples that day. So in the query, I want these fields to show up:
Date
Room/Location
Total number of samples(and a field I create myself) that will multiply the [NumberOfTimes] * 7.
That works out perfectly , for every day i see the total number ofsamples for that day.
Now I want to make a separate query that would group the different locations and add up the number of samples just for that room.
When I do that
I do GroupBy [Room/Location]
and Sum [TotalNumberOfSamples]
but it gives me a HUGE number, very irrelavant
do you know whats the issue here?