Sub copycells()
sResult = Range("x1") & " " & Range("x3") & " " & Range("x6") & " " & Range("x9")
Sheets("result").Range("A" & Sheets("result").Range("A65536").End(xlUp).Row) = sResult
End Sub
Sub foo()
Dim lst As Long
Dim i As Long
Dim item As Variant
lst = Sheets("result").Range("A" & Rows.Count).End(xlUp).Row
i = 1
For Each item In Array("X1", "X3", "X6", "X9")
Sheets("result").Range("A" & lst + i) = Range(item)
i = i + 1
Next item
End Sub
Sub test()
Dim myArea As Range
Dim LR As Long
LR = Sheets("result").Range("A" & Rows.Count).End(xlUp).Row
For Each myArea In Range("X1, X3, X6, X9").Areas
Sheets("result").Range("A" & LR + 1) = myArea
LR = LR + 1
Next
End Sub
Sub foo()
Dim lst As Long
Dim i As Long
Dim item As Variant
lst = Sheets("result").Range("A" & Rows.Count).End(xlUp).Row
i = 1
For Each item In Array("X1", "X3", "X6", "X9")
With Sheets("result").Range("A" & lst + i)
.Value = Range(item).Value
.Interior.Colorindex = Range(item).Interior.ColorIndex
End With
i = i + 1
Next item
End Sub