Hi all,
I'm hoping someone can help me out. Any help is greatly appreciated!
I have a large set of data set out in sections like below:
| Column 1 |
| 10000 |
| Text |
| Text |
| |
10001 |
Text |
Text |
| |
10002 |
Text |
Text |
I need to figure out a way to move pull the number form the top of each data set into a new column like so:
| New column | Column 1 |
| | 10000 |
| 10000 | Text |
| 10000 | Text |
| | |
| | 10001 |
10001 | Text |
10001 | Text |
| | |
| | 10002 |
10002 | Text |
10002 | Text |
Thank you for any help/advice you can give!