Run-time error 13 when deleting/inserting multiple row

alno00

New Member
Joined
Mar 15, 2018
Messages
3
Hello everybody!

New forum user here who is also very new when it comes to coding in Excel. I have encountered an issue where I get Run-time error 13 when deleting or inserting multiple rows.

Basically, I want my code to add "-" in a few columns when "TF" is entered in column A. If "TF" is removed, the dashes should also disappear.

I tried using the code from this post with no luck: https://www.mrexcel.com/forum/excel...ror-13-type-mismatch-when-deleting-cells.html

My code:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim c As Range
If Target.Column = 1 And Target.Column Mod 2 >= 1 And Target.Row >= 3 Then
    For Each c In Target
        If c.Value = "TF" Then
            c.Offset(0, 11).Value = "-"
            c.Offset(0, 12).Value = "-"
            c.Offset(0, 13).Value = "-"
            c.Offset(0, 14).Value = "-"
        Else
            c.Offset(0, 11).Value = ""
            c.Offset(0, 12).Value = ""
            c.Offset(0, 13).Value = ""
            c.Offset(0, 14).Value = ""
        
        End If
        
    Next c
End If
End Sub

Does anybody know what I'm doing wrong? :rolleyes:
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
If you're changing the values in Worksheet_Change() event, it's going to try and call Worksheet_Change() again in the middle of your code. You'll need to turn off application events I think:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim columnA As Range
Dim changedCell As Range
Dim thisCol As Long

' Find the intersection of column A and the changed range
Set columnA = Application.Intersect(Range("A:A"), Target)

' If nothing falls in this range then exit
If columnA Is Nothing Then Exit Sub

' Disable application events because we're going to change some values
Application.EnableEvents = False

' Process all changed cells in column A
For Each changedCell In columnA
    ' Must be on row 3 or below
    If changedCell.Row >= 3 Then
        ' Change columns L to O
        For thisCol = 11 To 14
            ' New value depends on whether the changed cell contains "TF" or not
            changedCell.Offset(0, thisCol).Value = IIf(changedCell.Value = "TF", "-", "")
        Next thisCol
    End If
Next changedCell

' Turn on events again
Application.EnableEvents = True

End Sub

WBD
 
Upvote 0
You could try this:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim c As Range, rng As Range

Set rng = Intersect(Target, Range(Cells(3, 1), Cells(Rows.Count, 1)))
If Not rng Is Nothing Then
    For Each c In rng
        If LCase(c.Value) = "tf" Then
            Range(c.Offset(0, 11), c.Offset(0, 14)) = "-"
        Else
            Range(c.Offset(0, 11), c.Offset(0, 14)) = ""
        End If
    Next c
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,176
Messages
6,129,318
Members
449,501
Latest member
Amriddin

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