Forum Discussion
cak980
May 05, 2022Copper Contributor
Using VBA to move a range of data to a different sheet when complete (need the for dummies version)
I'm trying to setup a macro so that when a task is completed (indicated with X), it automatically gets moved to a separate tab and deleted from original location. I was able to accomplish this but i...
HansVogelaar
May 06, 2022MVP
Try this:
Sub move_rows_to_another_sheet()
Dim myCell As Range
Dim w As Worksheet
Dim s As Long
Dim m As Long
Dim t As Long
Dim rng As Range
Set w = Worksheets("Sheet2")
t = w.Range("A" & w.Rows.Count).End(xlUp).Row
Application.ScreenUpdating = False
m = Selection.Rows.Count
For s = m To 1 Step -1
If Selection.Range("D" & s).Value = "Closed" Then
t = t + 1
Set rng = Range("A" & Selection.Range("D" & s).Row).Resize(ColumnSize:=4)
rng.Copy Destination:=w.Range("A" & t)
rng.Delete Shift:=xlShiftUp
End If
Next s
Application.ScreenUpdating = True
End Sub
cak980
May 06, 2022Copper Contributor
I must be doing something wrong, it's not working. I made some edits - sheet 2 is actually "Completed" and "Closed" is actually "X" and is column E
- HansVogelaarMay 06, 2022MVP
Could you attach a sample workbook (without sensitive data), or if that is not possible, make it available through OneDrive, Google Drive, Dropbox or similar? Thanks in advance.
- cak980May 06, 2022Copper Contributor
HansVogelaar https://docs.google.com/spreadsheets/d/1a0Pfj0Msj6X03atXb-wYZnRB0yBuK_Nt/edit?usp=sharing&ouid=114916416459283258686&rtpof=true&sd=true
- HansVogelaarMay 06, 2022MVP
You'll have to share the workbook - I now get Access Denied.