Hi VBA experts
I have a table with an identifier in column A and values in columns B to Z.
The structure is like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]IdentifierA[/TD]
[TD]value1[/TD]
[TD]value2[/TD]
[TD]value3[/TD]
[TD]value4[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierB[/TD]
[TD]value5[/TD]
[TD]value6[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierC[/TD]
[TD]value7[/TD]
[TD]value8[/TD]
[TD]value9[/TD]
[TD]value10[/TD]
[TD]value11[/TD]
[TD]value12[/TD]
[/TR]
[TR]
[TD]IdentifierD[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierE[/TD]
[TD]value13[/TD]
[TD]value14[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
There is 3.000 rows of data. As you can see some of the identifiers have no values.
On another sheet I need the following table to be generated in this format (two columns):
IdentifierA Value1
IdentifierA Value2
IdentifierA Value3
IdentifierA Value4
IdentifierB Value5
IdentifierB Value6
IdentifierC Value7
IdentifierC Value8
IdentifierC Value9
IdentifierC Value10
IdentifierC Value11
IdentifierC Value12
IdentifierE Value13
IdentifierE Value14
Note that as IdentifierD has no values it shouldn't be in the new table.
Your help will be highly valued.
I have a table with an identifier in column A and values in columns B to Z.
The structure is like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]IdentifierA[/TD]
[TD]value1[/TD]
[TD]value2[/TD]
[TD]value3[/TD]
[TD]value4[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierB[/TD]
[TD]value5[/TD]
[TD]value6[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierC[/TD]
[TD]value7[/TD]
[TD]value8[/TD]
[TD]value9[/TD]
[TD]value10[/TD]
[TD]value11[/TD]
[TD]value12[/TD]
[/TR]
[TR]
[TD]IdentifierD[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]IdentifierE[/TD]
[TD]value13[/TD]
[TD]value14[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
There is 3.000 rows of data. As you can see some of the identifiers have no values.
On another sheet I need the following table to be generated in this format (two columns):
IdentifierA Value1
IdentifierA Value2
IdentifierA Value3
IdentifierA Value4
IdentifierB Value5
IdentifierB Value6
IdentifierC Value7
IdentifierC Value8
IdentifierC Value9
IdentifierC Value10
IdentifierC Value11
IdentifierC Value12
IdentifierE Value13
IdentifierE Value14
Note that as IdentifierD has no values it shouldn't be in the new table.
Your help will be highly valued.