Here is my situation:
I have sheet1 "Population Names"
I have sheet2 "Results"
I need items in the range "E5:E21" of "Population Names" to copy to column "B" of "Results".
PROBLEM(s):
I have sheet1 "Population Names"
I have sheet2 "Results"
I need items in the range "E5:E21" of "Population Names" to copy to column "B" of "Results".
PROBLEM(s):
- There are blank cells in "E5:E21" of "Population Names" which I don't want to copy over.
- I would like to paste below any data which is already present (I don't want to overwrite anything) in column "B".
Code:
Sub AlmostThere()
'
' AlmostThere Macro
'
'
Sheets("Population Names").Select
Range("E5:E21").Selection.Copy
Sheets("Results").Select
Range("B3").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
End Sub