Updated code. It still places the values in A1 of the destination worksheet, but it places the values into the same size range as the selected range from the source worksheet. So if the selected range was C5:E6 (2 rows and 3 columns), the values will be placed in the destination worksheet A1:C2
Sub tgr()
Dim rngSrc As Range
Dim wsDest As Worksheet
Dim wsIndex As Long
On Error Resume Next
Set rngSrc = Application.InputBox("Select the range to copy to a next available sheet", "Move Values", Selection.Address, Type:=8)
On Error GoTo 0
If rngSrc Is Nothing Then Exit Sub 'User pressed cancel
wsIndex = rngSrc.Parent.Index + 1
If wsIndex > ActiveWorkbook.Sheets.Count Then wsIndex = 1
Do While wsIndex <> rngSrc.Parent.Index
If WorksheetFunction.CountA(Sheets(wsIndex).Range("A1").Resize(rngSrc.Rows.Count, rngSrc.Columns.Count)) = 0 Then
Set wsDest = Sheets(wsIndex)
Exit Do
End If
wsIndex = wsIndex + 1
If wsIndex > ActiveWorkbook.Sheets.Count Then wsIndex = 1
Loop
If wsDest Is Nothing Then
MsgBox "No worksheet contains an empty " & Range("A1").Resize(rngSrc.Rows.Count, rngSrc.Columns.Count).Address(0, 0) & " range. Exiting macro"
Exit Sub
End If
wsDest.Range("A1").Resize(rngSrc.Rows.Count, rngSrc.Columns.Count).Value = rngSrc.Value
MsgBox "Values have been placed in: " & wsDest.Name
'Uncomment this line if you want to remove the values from the source sheet
'rngSrc.ClearContents
End Sub
Bookmarks