Option Explicit
' A1:A10 to J1:J10 (have queries)and have the results displayed in column L1:L10to U1:U10 so
'each column and cell have result display in another cell.
Sub exa4()
Dim Cell As Range
For Each Cell In ThisWorkbook.Worksheets("Sheet2").Range("A1:J10")
Cell.Offset(, 11).Value = Cell.Value
Next
End Sub
Sub exa5()
With ThisWorkbook.Worksheets("Sheet2")
.Range("L1:U10").Value = .Range("A1:J10").Value
End With
End Sub