Results 1 to 7 of 7

Run Time Error 13 Type Mismatch

Threaded View

  1. #1
    Registered User
    Join Date
    06-14-2012
    Location
    Cincinnati
    MS-Off Ver
    Excel 2007
    Posts
    13

    Run Time Error 13 Type Mismatch

    Having problems with my code. It will work by itself but when I copy and paste data into the worksheet I get a run time error 13 type mismatch.



    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 1 Then
        Application.EnableEvents = False
        Select Case (Target.Value)
            Case "Injected"
                With Target.EntireRow
                    .Copy Destination:=Sheets("Injected").Range("A" & Rows.Count).End(xlUp).Offset(1)
                    .Delete
                End With
            Case "Too Expensive"
                With Target.EntireRow
                    .Copy Destination:=Sheets("Too Expensive").Range("A" & Rows.Count).End(xlUp).Offset(1)
                    .Delete
                End With
            Case "Other"
                With Target.EntireRow
                    .Copy Destination:=Sheets("Other").Range("A" & Rows.Count).End(xlUp).Offset(1)
                    .Delete
                End With
        End Select
        Application.EnableEvents = True
    End If
    End Sub
    The error is with the first case "Case Injected"


    Code using to move to the worksheet with the above code.

    Sub Copy()
     'Sheet1 must have data in column D
    Sheets("Data2").Range("A1:AY10000").Cut Destination:=Sheets("Check List").Range("D10000").End(xlUp).Offset(1, -3)
        
        
    End Sub

    Any help would be greatly appreciated.

    Thanks
    Last edited by nahge123; 07-15-2012 at 12:45 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1