I have to fill in report dates for tests. Each patient has multiple tests but “Report date” is only recoded for one of them. I’ve sorted the spreadsheet so that the row that contains the report date is first and all other tests in the same grouping are to follow.
I have a Single sheet that contains thousands of rows of continues data(no blank rows).
I need to match the content of each cell with a row below (columns A through I), to make sure that it’s the same grouping of test that was reported at the same time.
Only if all cells match( A through I), copy down the “Report date”. Repeat this until the end of data.
Please suggest some code.
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
Thanks
I have a Single sheet that contains thousands of rows of continues data(no blank rows).
I need to match the content of each cell with a row below (columns A through I), to make sure that it’s the same grouping of test that was reported at the same time.
Only if all cells match( A through I), copy down the “Report date”. Repeat this until the end of data.
Please suggest some code.
ID | MRN | LastName | FirstName | Category | SampleDate | LogTime | AssignedDate | TestedDate | TestType | TestID | ReportDate |
11111 | 222222222 | Smith | Bob | Lung | 1/24/2014 | 1/24/2014 | 1/24/2014 | 1/25/2014 | S_A | 1111 | 1/26/2014 |
11111 | 222222222 | Smith | Bob | Lung | 1/24/2014 | 1/24/2014 | 1/24/2014 | 1/25/2014 | S_B | 1112 | |
11111 | 222222222 | Smith | Bob | Lung | 1/24/2014 | 1/24/2014 | 1/24/2014 | 1/25/2014 | S_C | 1113 | |
11111 | 222222222 | Smith | Bob | Lung | 1/24/2014 | 1/24/2014 | 1/24/2014 | 1/25/2014 | S_D | 1114 | |
11111 | 222222222 | Smith | Bob | Lung | 1/24/2014 | 1/24/2014 | 1/24/2014 | 1/26/2014 | S_E | 1114 |
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
Thanks