I am new to excel VBA, and I need help to figure out how to transpose values from one sheet to another sheet.
Below are the images on how my data is before and how I need the data transposed:
BEFORE TRANSPOSE
COUNT OF CHARACTERISTICS |CLASS |CHAR 1 |CHAR 2 |CHAR 3 |CHAR 4 |CHAR 5 |CHAR 6 |
3 |ABSORBER |TYPE |SIZE |MATERIAL
5 |ADAPTOR |TYPE |SIZE_A |CONNECTION_A |SIZE_B |CONNECTION_B
|MATERIAL
AFTER TRANSPOSE
|CLASS |CHAR|
ABSORBER |TYPE
ABSORBER |SIZE
ABSORBER |MATERIAL
ADAPTOR |TYPE
ADAPTOR |SIZE_A
ADAPTOR |CONNECTION_A
ADAPTOR |SIZE_B
ADAPTOR |CONNECTION_B
ADAPTOR |MATERIAL
I have more than 1000 rows of data that needs to be transposed.
Sorry, this is the best I could do with regards to the table.