I am running Crystal v9
Oracle database
I have 3 tables
The job table will have one record and contain the selling price.
The labor ticket table can contain many records, one for each person/task/day, etc.
The material table can contain many records, one for each piece of material used to repair the item.
I would like to do a report that shows
Job # Selling Price Labor Cost(plus markup %) #hours charged to job Material Cost(plus markup %)
I can do formula to properly calculate the markup on the labor and the material, and I can do a running total that accurately totals both of these if I show one or the other on the report. But if I try to show both labor cost and material the records are duplicated and my totals are too high.
How do I accomplish this?
Oracle database
I have 3 tables
The job table will have one record and contain the selling price.
The labor ticket table can contain many records, one for each person/task/day, etc.
The material table can contain many records, one for each piece of material used to repair the item.
I would like to do a report that shows
Job # Selling Price Labor Cost(plus markup %) #hours charged to job Material Cost(plus markup %)
I can do formula to properly calculate the markup on the labor and the material, and I can do a running total that accurately totals both of these if I show one or the other on the report. But if I try to show both labor cost and material the records are duplicated and my totals are too high.
How do I accomplish this?