Hi,
I have a network database which is in the following format:
the first column contains the source node and the second column contains all the nodes linked to that source node separated by semicolons.
For example, cell A1: 1 _ cell B1: 2; 3; 4; 9
[I'll use this notation: 1 -- 2; 3; 4; 9]
I need to convert this to:
1 -- 2
1 -- 3
1 -- 4
1 -- 9
Is there an easy way to do it?
Oh, the number of links varies.
Of course I could convert the text to columns and then manually transpose every single row, but the database is big and I'd like to find an automated way to do this.
Thank you very much!
Bookmarks