Well hello, Fellas! 
I'm in a dire need of some assistance. My brainz has frozen and I need this yesterday. Here is the case:
<tbody>
</tbody>
There are some A NAME with one or more corresponding B NAME. B NAME may be found against more than one A NAME. Each A NAME/B NAME relation can result in only one unique NUMBER value. NUMBER can contain a number from 32 to 74, incl. Each row is unique.
I need to transpose the NUMBER values once per single A NAME-every B NAME horizontally, e.g.
<tbody>
</tbody>
Should become:
<tbody>
</tbody>
And then (or before), I'll need to find the missing values in the range of 32-74.
Any help is greatly appreciated! Oh, almost forgot, let's stick to formulas please, it's important to me. Thanks!
I'm in a dire need of some assistance. My brainz has frozen and I need this yesterday. Here is the case:
A NAME | B NAME | NUMBER | |||
a | 1 | number between 32 and 74 (incl.) | |||
a | 2 | 56 | |||
a | 3 | 32 | |||
a | 7 | 55 | |||
a | 90 | 44 | |||
a | 2 | 74 | |||
a | 4 | 66 | |||
a | 90 | 70 | |||
b | 3 | 32 | |||
b | 7 | 33 | |||
b | 8 | 34 | |||
b | 14 | 35 | |||
c | 54 | 36 | |||
c | 32 | 37 | |||
c | 1 | 38 | |||
c | 3 | 39 | |||
c | 8 | 40 | |||
c | 9 | 55 | |||
c | 1 | 70 |
<tbody>
</tbody>
There are some A NAME with one or more corresponding B NAME. B NAME may be found against more than one A NAME. Each A NAME/B NAME relation can result in only one unique NUMBER value. NUMBER can contain a number from 32 to 74, incl. Each row is unique.
I need to transpose the NUMBER values once per single A NAME-every B NAME horizontally, e.g.
a | 1 | 33 |
a | 2 | 56 |
a | 3 | 32 |
b | 3 | 32 |
b | 7 | 33 |
<tbody>
</tbody>
Should become:
a | 1 | 33 | 33 | 56 | 32 | ... | ... | ... | ... |
a | 2 | 56 | |||||||
a | 3 | 32 | |||||||
b | 3 | 32 | 32 | 33 | ... | ... | ... | ... | ... |
b | 7 | 33 |
<tbody>
</tbody>
And then (or before), I'll need to find the missing values in the range of 32-74.
Any help is greatly appreciated! Oh, almost forgot, let's stick to formulas please, it's important to me. Thanks!