Mudcat
yap
- Since
- Jan 27, 2010
- Messages
- 32,603
- Score
- 436
- Tokens
- 0
I'm having some issues.
Here's a question for starters:
Suppose you have two columns of data that you want to merge into one long one. Is there an easy way to do that?
Lemme see if I can illustrate. Suppose you have this:
12
34
56
78
Is there an easy way, other than just manually transcribing, to turn it into this:
1
2
3
4
5
6
7
8
If there was a way to just insert a space between rows, I could work from there. In other words turn it into this:
12
34
56
78
Because then I could just shift the 2nd column down a notch and do left-to-right sums. But I don't know how to insert those empty rows other than doing each one by hand. That would probably be a bit better than just transcribing but I am hoping for something more elegant.
Am I making sense?
Here's a question for starters:
Suppose you have two columns of data that you want to merge into one long one. Is there an easy way to do that?
Lemme see if I can illustrate. Suppose you have this:
12
34
56
78
Is there an easy way, other than just manually transcribing, to turn it into this:
1
2
3
4
5
6
7
8
If there was a way to just insert a space between rows, I could work from there. In other words turn it into this:
12
34
56
78
Because then I could just shift the 2nd column down a notch and do left-to-right sums. But I don't know how to insert those empty rows other than doing each one by hand. That would probably be a bit better than just transcribing but I am hoping for something more elegant.
Am I making sense?