Right here goes...
I have two tables, one named job, one named work.
The job table describes the jobs gving them a unique reference called fmRef. The each record in the work table lists the designer that worked on the job, the job's ref (fmRef) and the hours worked.
The problem is, is that more than one designer can work on a single job.
What I need is to be able to make a report that goes through the Job table and for every record find all the hours worked in the work table, tally them up and display them as if they were simply another field in the table.
a sort-of-pseudo-code is
for each record in "job" find and total all matching "fmRef"s in "work"
id imagine it would probably have to go in part of the query fields or such, but having never dabbled in getting queries from more than one table im a bit stumped.
Any help would be greatly appreciated,
Thanks in advance,
Mike Coats
I have two tables, one named job, one named work.
The job table describes the jobs gving them a unique reference called fmRef. The each record in the work table lists the designer that worked on the job, the job's ref (fmRef) and the hours worked.
The problem is, is that more than one designer can work on a single job.
What I need is to be able to make a report that goes through the Job table and for every record find all the hours worked in the work table, tally them up and display them as if they were simply another field in the table.
a sort-of-pseudo-code is
for each record in "job" find and total all matching "fmRef"s in "work"
id imagine it would probably have to go in part of the query fields or such, but having never dabbled in getting queries from more than one table im a bit stumped.
Any help would be greatly appreciated,
Thanks in advance,
Mike Coats