I have a database that contains production data from a reporting system. The way this database is built some records are "linked" or "related" to a previous record but does not contain all data needed. For example:
JobName CycleTime GrossPieces NetPieces
Job 1 62 145 122
Job 2 70 0 0
Job 2a 0 198 185
Job 2b 0 198 185
Job 1 above is only a single piece job. No problem here. Job 2 is a record that contains information about a family job (Job 2a and Job 2b) maybe right and left hand parts. But as you see Job 2 contains my cycle time for jobs 2a and 2b. I am throwing out all records in Crystal Reports Record Selector that have Gross and Net = 0. The only records that I need are ones that pieces have been produced. I need a way in Crystal to grab the "70" from cycle time from Job 2 and use it for 2a and 2b for performance calculations. Can this be done through the Record Select, or within a formula using "WhileReadingRecords"?
JobName CycleTime GrossPieces NetPieces
Job 1 62 145 122
Job 2 70 0 0
Job 2a 0 198 185
Job 2b 0 198 185
Job 1 above is only a single piece job. No problem here. Job 2 is a record that contains information about a family job (Job 2a and Job 2b) maybe right and left hand parts. But as you see Job 2 contains my cycle time for jobs 2a and 2b. I am throwing out all records in Crystal Reports Record Selector that have Gross and Net = 0. The only records that I need are ones that pieces have been produced. I need a way in Crystal to grab the "70" from cycle time from Job 2 and use it for 2a and 2b for performance calculations. Can this be done through the Record Select, or within a formula using "WhileReadingRecords"?