hi to all
I start with a table like this...
Note that records come in groups of 3. In each group of 3 records, C can be chosen from 1, 2, 3, 4, 5 or 6, with no repeats, and is listed in ascending order.
My problem: I need to add the MISSING values of C to each group. The corresponding values of A and B must also be filled in, but D and E are to be left blank for now. The result should look like below.
I'm sure this is straight forward, but I'm having a brain cramp.
many thanks
I start with a table like this...
Code:
A B C D E
------------------------
1 1 2 45 782
1 1 3 199 6
1 1 6 21 12
1 2 1 34 552
1 2 2 77 71
1 2 4 110 322
1 3 2 222 333 ... and so on
Note that records come in groups of 3. In each group of 3 records, C can be chosen from 1, 2, 3, 4, 5 or 6, with no repeats, and is listed in ascending order.
My problem: I need to add the MISSING values of C to each group. The corresponding values of A and B must also be filled in, but D and E are to be left blank for now. The result should look like below.
Code:
A B C D E
------------------------
1 1 1
1 1 2 45 782
1 1 3 199 6
1 1 4
1 1 5
1 1 6 21 12
1 2 1 34 552
1 2 2 77 71
1 2 3
1 2 4 110 322
1 2 5
1 2 6
1 3 1
1 3 2 222 333 ... and so on
I'm sure this is straight forward, but I'm having a brain cramp.
many thanks