There are two things:
1. There is personal information in this sheet. Children's names etc.
2. This issue has nothing to do with existing macros, I can remove all other macros with the exception of the one on the sheet (not a module) which is pasted in the original post, right-click on Row 2, select Insert and it still will not work.
I tried to attach images but I cannot for some reason.
Let me rephrase this issue for you.
On my sheet (not in a module), I have this code:
Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C:C")) Is Nothing Then
Select Case Target
Case "Home Expenses": CAT_HM
Case "Daily Living": CAT_DLE
Case "Children": CAT_CHLD
Case "Savings": CAT_SAV
Case "Obligations": CAT_OBLIG
Case "Entertainment": CAT_ENT
End Select
End If
All of the Case Macros are presently disabled and there is not an error.
I navigate to the sheet, I select row 2, right-click it and select Insert.
I cannot attach images because of quirky limitations, however, I describe what happens:
This error popup occurs
Microsoft Visual Basic
Run-time error '13':
Type mismatch
I click Debug
I am navigated to VBA and this line is highlighted:
Case "Home Expenses": CAT_HM
of this line of code
Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C:C")) Is Nothing Then
Select Case Target
Case "Home Expenses": CAT_HM
Case "Daily Living": CAT_DLE
Case "Children": CAT_CHLD
Case "Savings": CAT_SAV
Case "Obligations": CAT_OBLIG
Case "Entertainment": CAT_ENT
End Select
End If
This occurs if all my other macros are removed from the sheet.
I just want to insert a row and this (below) will not allow it.
Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C:C")) Is Nothing Then
Select Case Target
Case "Home Expenses": CAT_HM
Case "Daily Living": CAT_DLE
Case "Children": CAT_CHLD
Case "Savings": CAT_SAV
Case "Obligations": CAT_OBLIG
Case "Entertainment": CAT_ENT
End Select
End If
Bookmarks