Hello,
I have data that are in pairs of data of hrs and cost for a given process under a name and trying to transpose the data to columns for a given process so I can use an advanced filter.
Here is what my data looks like and it spans from Column C to Column KZ and goes down about 100 rows for 100 processes.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Name 1[/TD]
[TD][/TD]
[TD]Name 2[/TD]
[TD][/TD]
[TD]Name 3[/TD]
[TD][/TD]
[TD]Name 4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[/TR]
[TR]
[TD]Process 1[/TD]
[TD]2.13[/TD]
[TD]1827[/TD]
[TD]0.44[/TD]
[TD]160[/TD]
[TD]1.44[/TD]
[TD]966[/TD]
[TD]0.44[/TD]
[TD]357[/TD]
[/TR]
[TR]
[TD]Process 2[/TD]
[TD]9.63[/TD]
[TD]2005[/TD]
[TD]0.5[/TD]
[TD]131[/TD]
[TD]2.5[/TD]
[TD]485[/TD]
[TD]1.75[/TD]
[TD]465[/TD]
[/TR]
[TR]
[TD]Process 3[/TD]
[TD]0.13[/TD]
[TD]32[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0.5[/TD]
[TD]129[/TD]
[/TR]
</tbody>[/TABLE]
Output I am trying to get to:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Process 1[/TD]
[TD][/TD]
[TD]Process 2[/TD]
[TD][/TD]
[TD]Process 3[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[/TR]
[TR]
[TD]Name 1[/TD]
[TD]2.13[/TD]
[TD]1827[/TD]
[TD]9.63[/TD]
[TD]2005[/TD]
[TD]0.13[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Name 2[/TD]
[TD]0.44[/TD]
[TD]160[/TD]
[TD]0.5[/TD]
[TD]131[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]Name 3[/TD]
[TD]1.44[/TD]
[TD]966[/TD]
[TD]2.5[/TD]
[TD]485[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]Name 4[/TD]
[TD]0.44[/TD]
[TD]357[/TD]
[TD]1.75[/TD]
[TD]465[/TD]
[TD]0.5[/TD]
[TD]129[/TD]
[/TR]
</tbody>[/TABLE]
I tried using copy/transpose and using an index/match formulas but I think the best way would be a macro but I'm open to formulas as well. Any help would be greatly appreciated!
I have data that are in pairs of data of hrs and cost for a given process under a name and trying to transpose the data to columns for a given process so I can use an advanced filter.
Here is what my data looks like and it spans from Column C to Column KZ and goes down about 100 rows for 100 processes.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Name 1[/TD]
[TD][/TD]
[TD]Name 2[/TD]
[TD][/TD]
[TD]Name 3[/TD]
[TD][/TD]
[TD]Name 4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[/TR]
[TR]
[TD]Process 1[/TD]
[TD]2.13[/TD]
[TD]1827[/TD]
[TD]0.44[/TD]
[TD]160[/TD]
[TD]1.44[/TD]
[TD]966[/TD]
[TD]0.44[/TD]
[TD]357[/TD]
[/TR]
[TR]
[TD]Process 2[/TD]
[TD]9.63[/TD]
[TD]2005[/TD]
[TD]0.5[/TD]
[TD]131[/TD]
[TD]2.5[/TD]
[TD]485[/TD]
[TD]1.75[/TD]
[TD]465[/TD]
[/TR]
[TR]
[TD]Process 3[/TD]
[TD]0.13[/TD]
[TD]32[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0.5[/TD]
[TD]129[/TD]
[/TR]
</tbody>[/TABLE]
Output I am trying to get to:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Process 1[/TD]
[TD][/TD]
[TD]Process 2[/TD]
[TD][/TD]
[TD]Process 3[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[TD]Hrs[/TD]
[TD]Cost[/TD]
[/TR]
[TR]
[TD]Name 1[/TD]
[TD]2.13[/TD]
[TD]1827[/TD]
[TD]9.63[/TD]
[TD]2005[/TD]
[TD]0.13[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Name 2[/TD]
[TD]0.44[/TD]
[TD]160[/TD]
[TD]0.5[/TD]
[TD]131[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]Name 3[/TD]
[TD]1.44[/TD]
[TD]966[/TD]
[TD]2.5[/TD]
[TD]485[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]Name 4[/TD]
[TD]0.44[/TD]
[TD]357[/TD]
[TD]1.75[/TD]
[TD]465[/TD]
[TD]0.5[/TD]
[TD]129[/TD]
[/TR]
</tbody>[/TABLE]
I tried using copy/transpose and using an index/match formulas but I think the best way would be a macro but I'm open to formulas as well. Any help would be greatly appreciated!