Hi.
I have table like this:
<tbody>
</tbody>
And I want to transformed with a formula to form like this:
<tbody>
</tbody>
Thanks.
I have table like this:
A | B |
184 | 1204 |
184 | 1205 |
184 | 1308 |
184 | 6412 |
964 | 1204 |
964 | 2541 |
964 | 3413 |
964 | 4151 |
1075 | 3115 |
1075 | 3245 |
1075 | 3697 |
1075 | 4105 |
1075 | 5189 |
<tbody>
</tbody>
And I want to transformed with a formula to form like this:
A | B | C | D | E | F |
184 | 1024 | 1025 | 1308 | 6412 | |
964 | 1204 | 2541 | 3413 | 4151 | |
1075 | 3115 | 3245 | 3697 | 4105 | 5189 |
<tbody>
</tbody>
Thanks.