I am trying to get a loop running where if there is text in "A3" then it will cut it into C2. Then do the same thing with A5 to C4, A7 to C6 and so on until there is nothing in A(odd). Then I want to delete all the odd rows starting with three (They will all be empty). I can not for the life of me think what to do next. I tried indirect and I know there is a way to make it add to the cell value.
Loop
Sheets("Sheet 1").Select
Pickvar = 3
movevar = 2
cutvar = 2
Do Until IsEmpty(Selection.Value)
ActiveSheet.Range("A" & Pickvar).Select
Selection.Cut Destination = Range("C" & cutvar)
Pickvar = Pickvar + movevar
cutvar = cutvar + movevar
Thank you
Loop
Sheets("Sheet 1").Select
Pickvar = 3
movevar = 2
cutvar = 2
Do Until IsEmpty(Selection.Value)
ActiveSheet.Range("A" & Pickvar).Select
Selection.Cut Destination = Range("C" & cutvar)
Pickvar = Pickvar + movevar
cutvar = cutvar + movevar
Thank you