I have a data set looks like this:
ID | Date1| Thing1| Date2| Thing2| Date3| Thing3| Date4| Thing4|
1 | a | xx | b | xx | c | xx | d | xx |
2 | e | xx | f | xx | g | xx | h | xx |
I would like to change that to a long table like this:
ID | Date| Thing|
1 | a | xx |
1 | b | xx |
1 | c | xx |
1 | d | xx |
2 | e | xx |
2 | f | xx |
2 | g | xx |
2 | h | xx |
I know how to do that in R but it is really confused for me in excel.
Can anyone help me set up some vba code?
Thanks in advance