vote up -3 vote down star

Hi All

I have a big problem in the moment. I have to sort out an Excel sheet with names in it. There is always a first name and a last name following each other in the same order. Each name fills a cell. These Cells are alligned in one row. Example

Bill|Cospy|James|Bond|George|Clony|Michael|Jacksson

Now I want that each first name and second name are summarized into one cell and then the next first name and second name are taken for the same procedure. The result should be this:

Bill Cospy
James Bond
George Clony
Michael Jackson

Can someone write me script which does this?

(I take Visual basic or Applescript, it doesn't matter)

flag

1  
Can someone write you a script for this? Your not going to make any attempt yourself just ask someone to do it for you? – Gratzy Sep 29 at 15:43
I agree, this sounds like a request for a complete feature not help on how to accomplish one specific task. – Alan Jackson Sep 29 at 15:52
Sorry for asking so utilizing but I am under time pressure and don't know how to write a VB script well. I am trying in this moment to write one but without the basics I will only succeed in one week and I need very urgent a solution to the problem. So I came to this Community in the hope that someone would make an exception and help me in this bad situation. – elhombre Sep 29 at 16:02

1 Answer

vote up 2 vote down check

In Excel VBA

Dim curRow As Integer
Dim curCol As Integer

curRow = 1
curCol = 1

For Each c In Range("1:1") 'target row number'

    If c.Value = "" Then 'we have hit a blank cell in target row'
        Exit Sub
    End If

    Cells(curRow, curCol).Value = c.Value

    curCol = curCol + 1
    If curCol = 3 Then
       curRow = curRow + 1
       curCol = 1
    End If

Next c
link|flag
Thank you very much for your helpful cooperation in this delicate situation! You're a real live saver ;) – elhombre Oct 1 at 9:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.