Hi Duncan,
Am Fri, 14 Dec 2012 02:19:18 -0800 (PST) schrieb Duncs:
> A B C D E F G H
> 010203NN 27.50 020203YY 56.75 525251NY 175.2 101020YN 1.75
> However, what I also want to do is copy the data that is in the other cells, and paste the values into another spreadsheet. The problem I am having is that the copy / paste, is pasting in the values that are stored in B, D, F & H as well. I am then having to move each column left by one to get rid of the values.
try with a macro (modify to suit):
Sub copy()
Dim i As Integer
Dim j As Integer
For i = 1 To 7 Step 2
With Sheets("Sheet1")
j = j + 1
.Columns(i).copy _
Destination:=Sheets("Sheet2").Cells(1, j)
End With
Next
End Sub
Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2