...Continuing from above, it could look something like this:
Sub RngToRngValueExample()
Dim rngSource As Range
Dim lngColCount As Long
Set rngSource = Range("B11:L11")
lngColCount = rngSource.Columns.Count
Range("AO57").Resize(1, lngColCount).Value = rngSource.Value
End Sub
No copying, no pasting...
Bookmarks