Hi guys,
Spending a lot of time doing this manually and would appreciate some help.
I have a set of data:
[pre]
[/pre]
Thank you in advance.
Spending a lot of time doing this manually and would appreciate some help.
I have a set of data:
[pre]
Code:
A B C D E F G
1 #1 - ?1 ?2 ?3 ?4
2 #2 - ?5 ?6
3 #3 - ?7 ?8 ?9
4 #4 - ?10
Where:
# = ID
- = Irrelevant data
? = Relevant data
Which i want to transpose in to the following format:
...A...B
1 #1 ?1
2 #1 ?2
3 #1 ?3
4 #1 ?4
5 #2 ?5
6 #2 ?6
7 #3 ?7
8 #3 ?8
9 #3 ?9
10 #4 ?10
Thank you in advance.