Hello folks:
I have recently been given a report and data layout is basically unusable. Here is the current output:
I want my data to display:
I can do a copy/paste and transpose but I have 2500 lines of data. Any this can be done via VBA?
I have recently been given a report and data layout is basically unusable. Here is the current output:
Code:
[TABLE="width: 332"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Last Name:[/TD]
[TD]Smith[/TD]
[/TR]
[TR]
[TD]First Name:[/TD]
[TD]Jonathan[/TD]
[/TR]
[TR]
[TD]Card Number:[/TD]
[TD]1132[/TD]
[/TR]
[TR]
[TD]Employee Ref:[/TD]
[TD]111222333[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Last Name:[/TD]
[TD] Brown[/TD]
[/TR]
[TR]
[TD]First Name:[/TD]
[TD]John[/TD]
[/TR]
[TR]
[TD]Card Number:[/TD]
[TD]2233[/TD]
[/TR]
[TR]
[TD]Employee Ref:[/TD]
[TD]333444111[/TD]
[/TR]
</tbody>[/TABLE]
I want my data to display:
Code:
[TABLE="width: 345"]
<tbody>[TR]
[TD]Name:[/TD]
[TD]First Name:[/TD]
[TD]Card Number:[/TD]
[TD]Employee Ref:[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]Jonathan[/TD]
[TD]1132[/TD]
[TD]111222333[/TD]
[/TR]
[TR]
[TD]Brown[/TD]
[TD]John[/TD]
[TD]2233[/TD]
[TD]333444111[/TD]
[/TR]
</tbody>[/TABLE]
I can do a copy/paste and transpose but I have 2500 lines of data. Any this can be done via VBA?