Hi there,
I am creating a data exporter for one of my spreadsheets that will select a large amount of data so I can copy it elsewhere
I am trying to select a large range of data from multiple columns, however the data is in every two columns and then misses one E.G:
ABCDEFGHIJKL in the list to the left I would want to select columns AB,DE,GH etc.... until one of the cells contains a value (which is in a variable from an earlier part of the code)
this is what i have
'
'
'other code to find first blank row and place row reference in a variable called "lastrowInput"
'other code to find place an integer in a variable called "check" (integer is the column reference of the string it will continue searching upto)
'
'
Dim columnfinder As Integer
columnfinder = 9
Do While columnfinder <= check
Range(Cells(8, columnfinder), Cells(blankrowInput - 1, columnfinder + 1)).Copy
columnfinder = columnfinder + 3
Loop
what is happening in the above code is it will select the correct cells in the first iteration but then in the second iteration it will not append the new selection to the old one so all I end up with is the cells that are selected in the last iteration of the above
Can anyone help?
Bookmarks