Type mismatch error using target.value and target.entirerow.cut in WorkSheet_Change

Huhenyo

Board Regular
Joined
Jun 11, 2008
Messages
138
I'm using the following code.

Code:
Private Sub Worksheet_Change(ByVal target As Range)
    If target.Value = "CURED" Then
        target.EntireRow.Cut Destination:=Sheets("CURED").Range("A" & Rows.Count).End(xlUp).Offset(1)
    End If
End Sub

I can't figure out what the problem is. The type mismatch is highlighting the second row, but I'm pretty sure the problem is in the third row. Any help would be greatly appreciated. Thank you in advance!
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi,
I suspect you may be getting recursion (event runs twice) when applying that code.

Try turning events off before cutting the row

Rich (BB code):
Private Sub Worksheet_Change(ByVal Target As Range)
    On Error GoTo myerror
    If Target.Value = "CURED" Then
    Application.EnableEvents = False
        Target.EntireRow.Cut Destination:=Sheets("CURED").Range("A" & Rows.Count).End(xlUp).Offset(1)
    End If
myerror:
    Application.EnableEvents = True
End Sub

The error trap is included as EnableEvents has to be explicitly set to True

Dave
 
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,375
Members
448,888
Latest member
Arle8907

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