Excel help, please!

Soldato
Joined
21 Jan 2010
Posts
3,571
I have one sheet with a single project reference number per row.

What want is a formula that will pull each project reference number to a separate sheet on 3 consecutive rows. I can then sort their other stuff with indexmatches into a proper table.

I know I can dumb paste rows, but I want to formula it, so it updates as the other sheet does.

Like this
P1
P1
P1
P2
P2
P2
Etc

*yeah, I know, it was another one of those "I wouldn't start from here" conversations.
 
your best bet is to use something like bbedit, find and replace the character for space to \n which is for new line.
That way all the reference number will be on a new line then copy and paste that in to excel

Edit: if they haven't got a space, and the project names all start with P.. find and replace P with \nP and that will put a new line.
if your using linux, you can parse it with sed or awk
if you're using windows, then I can't help; but I think notepad++ has some tools that are the same as BBEdit
 
Last edited:
Back
Top Bottom