Move row to specified sheets based on multiple cell values in column F

slayer1957

Board Regular
Joined
Jan 9, 2017
Messages
50
Good day,

I have code,

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Version 2
If Not Intersect(Target, Range("F:F")) Is Nothing Then
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
Dim Lastrow As Long
Lastrow = Sheets("Completed").Cells(Rows.Count, "F").End(xlUp).Row + 1


If Target.Value = "Yes" Then
Rows(Target.Row).Copy Destination:=Sheets("Completed").Rows(Lastrow)
Rows(Target.Row).Delete
End If
End If
End Sub



-----------------------------------------------
With this code on the current sheet it checks the value of cell F in the row, if it is "Yes" it moves the entire row to sheet "Completed" and delete the row on the source sheet. I want to expand the code, when cell F in the row has "Parking Bay" it must move entire row to sheet "Parking Bay". Both the Yes and Parking Bay must work.

Please assist to change
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try something like this.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Version 2
Dim wsDst As Worksheet
Dim Lastrow As Long

    If Not Intersect(Target, Range("F:F")) Is Nothing Then
    
        If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
        
        Select Case Target.Value
            Case "Yes"
                Set wsDst = Sheets("Completed")
            Case "Parking Bay"
                Set wsDst = Sheets("Parking Bay")
        End Select
        
        If Not wsDst Is Nothing Then
        
            With wsDst
                Lastrow = .Cells(Rows.Count, "F").End(xlUp).Row + 1
                Rows(Target.Row).Copy Destination:=.Rows(Lastrow)
            End With
            
            Rows(Target.Row).Delete
        
        End If
    
    End If

End Sub
 
Upvote 0
The code works fine, I have changed to word "Parking Bay" to "Review", It does not work however when the sheet name "Parking Bay" and word has two words, "Parking Bay", but when changed to "Review" it works.

Thanks for the help
 
Upvote 0
It shouldn't matter how many words there are typed in the cell or in the sheet name, if you enter 'Parking Bay' in column F the row should be copied to the sheet named 'Parking Bay'.
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,342
Members
448,570
Latest member
rik81h

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top